Como instalo o SSH no Ubuntu?

2

Estou usando o Ubuntu 12.04 e estou tentando instalar o SSH usando o comando abaixo:

[root@avi ~]# sudo apt-get install ssh

No entanto, estou recebendo este erro:

Reading package lists... Done
Building dependency tree     
Reading state information... Done
Package ssh is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:

  openssh-client ssh-askpass-gnome

E: Package ssh has no installation candidate

Eu também tentei este comando:

[root@avi ~]# sudo apt-get install openssh-server

Como posso instalá-lo com sucesso?

    
por max 24.07.2012 / 07:21

1 resposta

1

Eu notei isso no que você postou:

However the following packages replace it:

  openssh-client ssh-askpass-gnome

O comando para usar o open-ssh que já está instalado (você provou isso com o que você forneceu) é simplesmente

ssh (host IP or host URL)
    
por 24.07.2012 / 07:24