Software :: Pass ALT Over Ssh Connection?

Dec 20, 2010

I'm using securecrt( aka putty) to connect to Centos server. to esteblish the connection i use xterm.The problem i'm looking the solution for is that I can't use <ALT> to pass the shortcut commands to the app (on the server) because they get intercepted by windows. is there a way around this

View 2 Replies


ADVERTISEMENT

Networking :: IPF Pass In Connection To Port 21 Even With No Explicit Rule?

May 26, 2010

I'm running IPF on solaris 10 Note :i believe the idea will be the same it doesn't matter either its linux or solaris

Code:
bash-3.00# ipf -V #display ipf version
ipf: IP Filter: v4.1.9 (592)

[code]....

View 9 Replies View Related

Programming :: C++ Failing To Pass By Value?

Jan 25, 2010

I have a strange problem with a simple program. I have a container class that holds a pointer. I did this so I could use another container class that does several pass by value calls. I didn't want to be copying the object over and over again, so decided to build this simple container that simply copied the pointer in the copy constructor.

However, the pass by value call seems to be failing in a strange way. When the pass-by-value function is called, the program jumps into the copy constructor just fine and performs the pointer assignment operation. The program will copy the pointer value 0x20 (for argument sake) to the "this->base" location. Within the copy constructor, this has the address 0x28. Then when it jumps into the function, instead of pass by value argument being at 0x28 (as expected), it is at 0x36. Then 0x36->base has the address 0x28. Thus the base is now pointing at what was the new pointer container. At this point the data is corrupted and random things happen.

It seems that there is some strange assignment and double nesting going on. I really do not understand what is going on.

Below is some code. I have stripped away all the other code trying to isolate the problem. I have added comments explaining what my debugger is telling me.

Code:
using namespace std;
class paramPnt // Need to determine how order is tracked
{
private:
long order;

[Code].....

View 4 Replies View Related

Programming :: JNI - How To Pass STL Structures

Jun 17, 2011

I hace some code C/C++ STL, which i need to use for android, using SDK-NDK-JNI.my problem is that i need to pass some STL structures across JNI, I can't pack/unpack data into basic types or arrays of basic types, doing my own simple streaming between the two layers.My application need to pass a pointer to a STL structure which is updated by eachuser interaction wonder if it is possible using NDK-JNI ?Other option is "native activity" but it also needs JNI in some way ... and passing the STL structures wille a requirement, yet.I only can package data into an own streaming if there is a second (concurrent) application running (implementing the STLfunctionality). Is it possible ?

View 1 Replies View Related

Fedora :: How Pass IgnoreABI To Xorg From GDM

May 24, 2010

I successfully install nVidia drivers and prevent nouveau loads. Almost all works fine, but when gdm try to start a X server fail with this message: cat /var/log/Xorg.0.log |grep -e EE -e WW

[code]...

So, I manually start Xorg with the -ignoreABI and works fine. But I can't start Xorg from GDM, I try put

[code]...

But don't works, How can I pass the -ignoreABI argumento to Xorg from GDM and start normally?

View 14 Replies View Related

General :: Pass Wildcard Array To Cp

Sep 12, 2011

passing a wild card array to cp, I know it can be done but cant figure it out, ive got 3 files all start with the word somefile but have 3 different extensions

somefile.conf
somefile.dat
somefile.py

there in a folder with a bunch of other files and I just want to copy them to a different location. I remember is being something like cp somefile.[py conf dat] /somewhere but this isn't working Ive searched the net and can't find it with the keywords i'm using.

View 1 Replies View Related

Ubuntu :: Virtualbox-4.0 Usb-2.0 Pass Through Grey Out?

Jan 1, 2011

I have installed Virtualbox-4.0 as well as the extension pack using the instruction here: I have also put my user in the 'vboxusers' group. But the usb-2.0 items are grey out and disabled.

View 9 Replies View Related

Ubuntu :: Cant Get Pass Login Screen

Jan 2, 2011

I installed KDE from synaptic, then I removed gnome from synaptic during the same session then I rebooted without having selected KDE from the session selector on the login screen as result I cant get pass the login screen. there is no option to select. I can boot in terminal mode but I don't know how to configure this from terminal.

View 1 Replies View Related

Ubuntu :: Cannot Pass The Login Screen?

Jan 2, 2011

I have a problem with Kubuntu 10.10. I cannot pass the login screen. When I type the password and press enter, the screen blinks once and I'm back at the login screen. When I try console login, there's no problem at all, but when I type startX, it ends up with a black screen. I wasn't configuring anything before the problem appeared, I think I just activated Kwallet.

I'm a linux noob, so I didn't really know where to look. Here are logs I found. Sry for my bad english.

Preclik

[URL]...

Edit: I looked into a user.log, it seems there's a problem with accessing file .esd.auth. I used chmod, so the file should be accessible to everyone, but problem persists.

View 6 Replies View Related

Programming :: Pass Variable Between Scripts?

Mar 9, 2011

I need to pass variable from sc1.sh to sc2.sh and update the value of the passed variable in sc2.sh and then return the updated value of the variable from sc2.sh to sc1.sh.

View 7 Replies View Related

General :: Pass All Arguments To A Function?

Jul 6, 2010

I've got a sticky little problem with a bash script. Please consider the following code:

Code:
#! /bin/bash
processArgs() {
echo "Count = $#"
while [[ $# -ne 0 ]]; do
echo $1
shift
done
}

processArgs $* If I call this script with Code: ./script first second third it'll print each of the argument on a new line - exactly what I would expect. However if I call it with

Code: ./script "Single Argument" "Second-Argument" it splits the first argument in two using the space as a delimitor. The problem appears to be the call to processArgs, where $* doesn't honour the quotes around the variables sent to the script.

View 4 Replies View Related

General :: Pass Two / Three Values To Grep?

Sep 22, 2010

Is there any way i can pass two / three values to grep. Basically i want to list the lines in the file with three different values. Currently I'm using three grep to get my work done.

EG: more Filename | grep text1 | grep text2 | grep text3
BRs

View 2 Replies View Related

General :: Pass A Variable From One Script To Another?

Nov 22, 2009

I want to pass a variable from one script to another, I have a feeling it's extremely simple.

I looked at exporting, but apparently that clogs up the shell, so I don't want to go down that route. Any suggestions?

View 2 Replies View Related

General :: Unsafe To Have A Ssh Key With Out Pass Phrase?

Jul 27, 2010

Is it complete unsafe to have a ssh key with out pass phrase ?

View 4 Replies View Related

General :: SSL Server Key W/O Pass Phrase?

Jul 16, 2010

I'm having trouble trying to generate an SSL server key WITHOUT a pass phrase.

Here's what I did. Wrong, obviously.

Code:

View 1 Replies View Related

Server :: Pass A Directive To All But One Or Two Locations

Jul 22, 2010

I want to pass a directive to all but one or two locations. How do I do that?

Like:

<Location /1>
xxx
</Location>
<Location /2>

[code]...

View 2 Replies View Related

Software :: Use Php To Pass Commands Onto A Server?

Mar 4, 2009

hi all how do i use php to pass commands onto a server? like i want to be able to:

1. delete the content of a file (or just delete the file and make a new one if it's easier)

2. read the content from a file

3. write new data to a file via an input box

4. run a command on the server

View 7 Replies View Related

Software :: Pass Arguments In Scripts?

Dec 13, 2010

I am calling script 2 from script 1. Is it possible for me to pass the output from script 2 to script 1 as the value of a variable. for eg.. path=`/XXX/XXX/script2.sh`

View 3 Replies View Related

Programming :: Pass In Mandatory Arguments First?

Jun 9, 2011

I am using getopts to take parse optional arguments but i also pass in mandatory arguments first

[code]
#!/bin/bash
print_usage()
{
perror "$@"
}
arg1="$1"
arg2="$2"
shift 2
[Code]....

View 8 Replies View Related

CentOS 5 :: Set Up User Name And Pass For A Folder?

Jun 21, 2010

I have big folder I want to send it to my friend because it is over 20MB I can't send it by email so I want to put it on my website in a folder any time he wants to access it he should put uer name and passwod.I am completly new in that kind of stuff please let me know if any one know how to do it.

View 3 Replies View Related

Debian :: Change Forgotten User Pass Through SSH?

Mar 31, 2010

I have been put on the task of changing the passwords of two user accounts on one of our debian boxes at work. The problem is that the current passwords are unknown, and I only have SSH access to the machine.

Is there anything I can do?

I thought about simply creating two new users and removing the old, but that may not be an option.

View 1 Replies View Related

Debian :: Pass A Textinput From Xmessage To Sudo?

Oct 26, 2010

As seen in this thread: viewtopic.php?f=20&t=50703xmessage is queuing a shutdown/reboot command, but if pressed, nothing happens. How do I get xmessage to send a textinput value to sudo?odify my execIsuma code to suit if you can, would make things much simpler.

View 8 Replies View Related

Debian :: Root Pass And Network-manager ?

May 19, 2011

I have stop using debian some months but I decide to come back. Yesterday I have make a clean install of debian squeeze. The network manager never rember my wireles password. Every time I open the pc it ask me the keyring password and the wireles password. Why network manager can't rember my passwords? Also I have a strange problem when I try to gain root acces. If I try to open synaptic or to mount a ntfs partion it ask me the root password but every time I type my root pass it says that its incorrect but I am absolutely sure that I type my root pass correct. Also if I try to gain root acces from terminal with su its became the same thing but after some tries it takes my pass as corect. So every time I type my root pass from a gui like gksu it always says that is incorect but if I type my pass in terminal it take it correct after some tries. In the past I have again installed the debian from the same cd on the same pc but I had never those problems. What can be wrong?

View 6 Replies View Related

Fedora :: Pass Drivers From Ubuntu To System?

Oct 7, 2010

I installed fedora on my PC and laptop but no drivers installed especially on laptop

when installed ubuntu all drivers work and installed

my question is
is there is a way to get drivers installation from ubuntu and get it to fedora?

if it possible i will be glade

View 5 Replies View Related

OpenSUSE Install :: Can't Pass Gnome Login

May 10, 2010

I'm having some trouble with Gnome's Login screen. What happens is that I type my username and password correctly, the login screen fades out and everything seems normal until the login screen appears again, I enter my username and password again and the login fades out only to appear again and again and again and so on.

Only the root user works with the login, and also if I use failsafe mode, then login in textmode and then use "startx" it works fine.

View 1 Replies View Related

General :: Pass A Variable To A Function That Already Being Escaped?

Jul 28, 2010

What i want to do is create multiple informix sql statements & later run them via a bash script.

Here is what i have so far (this works) but is meant to be run from a cron job so it only does one day at a time:

echo "
update hst`date --date='yesterday' +%m%d%y`
set x = 'GARP'
where y in ('CRE', 'LAC', 'SRL', 'JAG', 'JNM', 'BIM')
and appl = '';

[Code].....

The problem here is it doesnt want to read the variable $x correctly so the statement fails.

View 1 Replies View Related

General :: Pass A File That Changes Name To Another Command In Bash?

Jun 9, 2011

I frequently use wget to download tarballs and zip files from the web, then either untar then or gunzip them. I do:

Is there a way for me to automatically pass the zip file to tar or unzip WHILE wget-ting?

In pseudocode: wget google.com/somfile.zip && unzip

View 3 Replies View Related

Ubuntu :: Unable To Pass The Login Screen

Feb 17, 2010

I have done a clean intall of Ubuntu 9.10 (K. Koala). Got everything up and working with 2 users, me with full privelleges and my son with a ltd account. Everything was working well so I moved the PC to my sons room, connected it to his TV and was able to log in as both users.

I changed the display settings on his account as when using the 1360 x 768 (16:9) setting the top bar and the last icons on the screen weren't visable, the desktop also started about 2inches from the left hand side of the screen, so changed them to 800 x 600 and whole desktop visable.

I switched user and did the same to my desktop. Then switched the pc off. I come back to it now, boot it up, get to the user/password screen, select me and enter my password, the screen flickers, little Ubuntu drum roll, and I return to the login screen. So I try my sons login, same result. No password authenticaion message, so I guess this isn't the issue. Surley just changing display settings can't have this effect?

View 1 Replies View Related

Ubuntu :: Pass Parameters To Bash Through Shellscript?

Mar 21, 2010

How do I pass file names as parameters to the shell through a script? I have installed 'wipe' from the repos and it is a shell based app. so I made a shellscript and put it in my script folder.

the normal usage of wipe is 'wipe -q /path/to/file' so if I were to make a shell script, right click on the file in question, and run the script on it, how to I permit the shell to wipe that file only, in other words pass it as a parameter. I think on windows it was the use of %1, such as. 'wipe -q %1' for example, which was simple enough. how to I achieve this with bash?

View 2 Replies View Related

Ubuntu Multimedia :: SPDIF Pass-through Only Works With 2ch PCM?

Mar 27, 2010

I'm trying to get AC3/DTS passthrough working with my HTPC in which I'm using the onboard sound from an nForce 4-based motherboard. I've tested it in Win7 to check that all the connections etc are set up correctly and it works perfectly there. However under Kubuntu I can only get 2ch PCM sound to work through the SPDIF connection. Any DTS/DD sources just result in silence.If I go into Multimedia settings in the System Settings panel, the SPDIF device that shows up there (once I enable advanced devices) produces no sound with the Test button. I can hear a click as the device is activated but no sound is produced. I can also see that a digital signal is making it to my receiver as it has an icon which lights up when it locks onto a signal.Has anyone had success with SPDIF passthrough in 9.10? I've tried twiddling all the settings in Kmix relate to IEC and also tried following the Alsa wiki on digital passthrough without any success.

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved