Você pode instalar o pacote rsh-client
.
A instalação deve mudar o link simbólico para o arquivo rsh recém-instalado, caso contrário, você pode alterá-lo usando update-alternatives
.
Eu queria experimentar o rsh
(ou rshell
?) - a maneira antiga e insegura de fazer login remotamente.
No meu Ubuntu 11.04, existe um comando rsh
:
$ which rsh
/usr/bin/rsh
... no entanto, parece que é um mero link simbólico para ssh
:
$ ls -la 'which rsh'
lrwxrwxrwx 1 root root 21 2011-03-25 16:07 /usr/bin/rsh -> /etc/alternatives/rsh
$ ls -la $(readlink -f 'which rsh')
-rwxr-xr-x 1 root root 391580 2011-04-02 12:16 /usr/bin/ssh
Este "antigo" rsh
existe nos repositórios do Ubuntu - e se sim, como eu o instalo? Além disso, o rsh
também é dividido em pacotes de cliente e servidor - e, em caso afirmativo, quais pacotes são esses?
Você pode instalar o pacote rsh-client
.
A instalação deve mudar o link simbólico para o arquivo rsh recém-instalado, caso contrário, você pode alterá-lo usando update-alternatives
.
Existem duas versões. Clássico rsh-{server,client}
e o mais recente rsh-redone-{server,client}
(que ainda não tem criptografia, mas tem suporte para coisas como o IPv6).
$ apt-cache show ^rsh # output is trimmed
Package: rsh-server
Description-en: server program for remote shell connections
This package contains rexecd, rlogind and rshd.
Package: rsh-client
Description-en: client programs for remote shell connections
This package contains rsh, rcp and rlogin.
Package: rsh-redone-client
Description-en: Reimplementation of rsh and rlogin
Rsh-redone is a reimplementation of the remote shell clients and servers.
It is written from the ground up to avoid the bugs found in the standard
clients and servers. It also fully supports IPv6.
.
This package provides rsh and rlogin.
Package: rsh-redone-server
Description-en: Reimplementation of rshd and rlogind
Rsh-redone is a reimplementation of the remote shell clients and servers.
It is written from the ground up to avoid the bugs found in the standard
clients and servers. It also fully supports IPv6.
.
This package provides rshd and rlogind.
Por favor, tente instalar os seguintes pacotes:
rsh-client - programas clientes para conexões remotas do shell
rsh-server - programa do servidor para conexões remotas do shell
Thomas
Veja os pacotes rsh-redone-client
e rsh-redone-server
.
Eles fazem o trabalho.