Questions tagged [rsh]
The remote shell (rsh) is a command line computer program
30 questions
0
votes
1
answer
72
views
How to run netscape navigator with rsh and DISPLAY?
I want to launch Netscape Navigator
The 6000 port on my host is open
the host is added using xhost+
host + 192.168.0.33
If I did
rlogin 192.168.0.33
and then
export DISPLAY=192.168.0.2:0
navigator
...
1
vote
0
answers
2k
views
how to install rsh/rlogin on RHEL 9
I need to install rsh/rlogin services on a RHEL9 host. It looks like these services were removed from the distribution and also from EPEL.
I know all the reasons not to install these, but I need to ...
1
vote
0
answers
260
views
After restarting xinetd service, rsh shows "poll: protocol failure in circuit setup"
I have searched a lot in various forums and most indicate that the solution is to open ports in the firewall or restart the xinetd service. Although that may be the solution in some cases, I think the ...
0
votes
0
answers
292
views
SSH jump proxy to access RSH-only endpoint
The setup: only a single server in the group is acessible via SSH. Others are accessible from the former via RSH only.
So when I want to execut a command on other servers, I do this:
$ ssh asd10 rsh ...
0
votes
0
answers
273
views
login with rsh having zero size terminal (stty)
I've received a very peculiar problem all of sudden to the Linux hosts while doing rsh to them from a remote site and them opening a file it returns the file opened very limited on the terminal saying ...
1
vote
1
answer
1k
views
How enable non-privileged user to connect using rsh?
I have two hosts with Red Hat 7.4 , HostA and HostB.
The rsh-server and rsh packages was installed in both.
At both hosts, the rsh deamon was activated, the commands rsh,rlogin,rexec was added to /etc/...
-1
votes
2
answers
93
views
Getting size of 40k paths from remote network
I've around 40k lines of file with paths which I need to take size from remote site (using rsh & du -scL command). I tried with while read line but due to remote connection, it exits after 100+ ...
0
votes
0
answers
2k
views
Unable to do RSH connection
I have two servers with RHEL 6.6 installed. I'm trying to do an RSH connection between these two. Following are the errors which I'm getting:
connect to address 172.21.70.95 port 544: Connection ...
0
votes
0
answers
1k
views
rsh Temporary failure in name resolution
I am trying to use RSH commands using for example: rsh -l root 10.0.2.5 "ls"
When I run this command I get
getnameinfo: Temporary failure in name resolution
but I get a shell by just running rsh -l ...
1
vote
0
answers
525
views
Enabling rsh / rlogin with pam in amazon linux
Please don't even think of suggesting to use ssh. I use ssh and I know how to use it. But sometimes I just want to use rsh! There are good reasons to do so, if you know what you are doing!
actually I ...
4
votes
1
answer
529
views
Execute script on a remote server contained on client side
I am trying to figure out how I could manage more easily my servers. I'd like to know if I can make my scripts available to all the servers without copying them to the servers.
They are located in my ...
1
vote
1
answer
535
views
can't run "lspci" command using rsh from a windows batch file
I've made a batch file on a Windows machine, with the following command:
rsh hdvg-1 -l root lspci
The hdvg-1 is the name of the Linux machine on the network.
But what I get in result is: command not ...
0
votes
1
answer
432
views
RSH closing stderr socket with a delay?
Environment: CentOS 6.6
When running this simple test (from myclient):
while true; do rsh myserver "echo OK"; done
After ~500 iterations, the server runs out of ports.
netstat -anp on the server ...
3
votes
2
answers
1k
views
Ways to optimize performance in pipelines over network (RSH and SSH)
Consider a data transfer over a pipeline network in legacy systems with remote shell (RSH), like:
rsh host -l user tar -cf - /home/dir \| compress | uncompress | tar -xvf -
and this one in 'modern' ...
2
votes
1
answer
612
views
Rsync over custom shell with fifo
I'm trying to use rsync over a custom shell created with fifo. However I cannot find a way to deal with it :
The script initsh to simulate a standard shell by fifo :
#!/bin/bash
rm fin
mkfifo fin
...