Tagged Questions
The rsh tag has no wiki summary.
4
votes
1answer
454 views
Running daemon through rsh
I want to run program as daemon in remote machine in Unix. I have rsh connection and I want the program to be running after disconnection.
Suppose I have two programs: util.cpp and forker.cpp.
...
4
votes
5answers
2k views
How do you use ssh in a shell script?
When I try to use an ssh command in a shell script, the command just sits there. Do you have an example of how to use ssh in a shell script?
2
votes
1answer
108 views
Executing RSH command using exec() in PHP
I am having trouble using rsh in the PHP exec() command. The error that I'm getting is: Could not create directory '/nonexistent/.ssh'.
It appears that this is because Apache runs as the user nobody ...
2
votes
2answers
673 views
moving from one to another server in shell script
Here is the scenario,
$hostname
server1
I have the below script in server1,
#!/bin/ksh
echo "Enter server name:"
read server
rsh -n ${server} -l mquser "/opt/hd/ca/scripts/envscripts.ksh"
...
2
votes
4answers
1k views
What are the advantages of rsh versus Perl's Expect.pm?
I have a Perl Expect.pm script that does some moderately complex stuff like packaging applications, deploying the application, checking for logs, etc. on multiple remote unix hosts.
My predecessor ...
1
vote
1answer
99 views
python libraries in a computer cluster
I'm having a problem for python to find the installed libraries when I run it in a computer cluster.
When I try, e.g., to load numpy in the script:
#file: /home/foo/test.py
import numpy
print ...
1
vote
1answer
451 views
Nivo Slider doesn't work on webkit browsers with Really Simple History (RSH)
I am building an AJAX powered website which uses the Really Simple History (RSH) framework to handle back and forward requests.
I'm also using Nivo Slider for a simple slideshow. In Firefox and even ...
1
vote
2answers
77 views
What does the backslash operator do inside RSH conditionals?
I'm interested to know what this snippet of RSH code does, and whether Bash has something similar:
if [ -z $ALPHA \
-z $BRAVO \
-z $CHARLIE \
-z $DELTA ]; then
var=$ZULU
fi
1
vote
4answers
3k views
Potential problems setting window.location.hash
I have some javascript code which, at one point, sets window.location.hash to a specific string. This works fine in Firefox 3, but I want to know if I will run into problems with this later, i.e. is ...
0
votes
0answers
26 views
Export display to a virtualized Linux OS does not work
I am virtualizing a CentOS distro on VMWare-Player. Now I am trying to export the display from another computer to the virtualized CentOS. But I fail. The network is working and I can ping the ...
0
votes
0answers
14 views
Configuring remote execution utility from perl script
I have been using rsh as remote connection utility to connect to remote machines like Windows/Windows , Windows/*Nix and run some predefined scripts/jobs.As of now I have embedded the rsh utlity in my ...
0
votes
1answer
34 views
vc-diff uses rsh?
I am trying to use C-x v = to compare my current buffer with the repository file. But it gives error:
cvs [diff aborted]: cannot exec rsh: No such file or directory
cvs [diff aborted]: end of file ...
0
votes
2answers
289 views
Run shell script on a remote machine in Unix without using ssh or rsh
I want run a script on another machine. Is there anyway to do it without any kind of authentication even if I'm running it for the first time on that machine? It is assumed that the other machine is ...
0
votes
2answers
100 views
process files via rsh in perl
I have an existing program which takes a directory path and processes recursively tis directory and its files. I need to change this code to use a directory on a remote system, so for example the flow ...
0
votes
2answers
161 views
How can I connect to a remote machine and list all files in a directory?
I am on a Unix machine, and I need to remotely connect, via rsh, to a Windows machine and list all the files in a particular directory.
Most of the code I've read is really confusing. Are there any ...
0
votes
2answers
69 views
How to write a CVS wrapper script
I'd like to write a CVS wrapper script that executes the command on another machine using RSH but am having trouble with quotes.
#!/bin/csh -f
rsh <machine> cvs $*:q
The problem is that even ...
0
votes
1answer
170 views
How to determine current remote connection type? (rsh or ssh)
I want to know if there is some methods to find out the current connection type to remote server (rsh or ssh?). Environment is Solaris 9, SuSE linux, csh.
0
votes
1answer
75 views
How can I remotely log on to a machine, execute a script which sets up an environment, then accept user input?
I've been trying to figure out a way to do this for a few hours now, and am having no luck.
I have a large environment file that I have saved as a ksh script. This script works perfect if I type . ...
0
votes
1answer
533 views
How Can I Tell what Username RSH sends from SUA?
I am on a Windows Vista 64-bit Enterprise machine with Subsystem for Unix Applications installed and the applications downloaded. I am attempting to use RSH to connect to a FreeBSD server. The command ...
-1
votes
1answer
93 views
RSH connection problem while running MPI program
I'm trying to run MPI programs on 8 machines, but I get the error
connect to address 127.0.0.1 port 544: Connection refused
Trying krb4 rsh...
connect to address 127.0.0.1 port 544: Connection ...