Instalando o SSH no Ubuntu 14.04LTS

0

Olá a todos que eu tentei instalar o SSH no meu Ubuntu 14.04LTS que está no VMware, mas na maioria das vezes recebo a seguinte mensagem de erro, por favor, o que poderia estar errado?

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 ssh : Depends: openssh-server (>= 1:6.6p1-2ubuntu2.8) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
    
por yankky 31.08.2016 / 04:05

1 resposta

3

Abra o terminal e digite:

sudo apt-get update  
sudo apt-get install openssh-client # client for secure access to remote machines  
sudo apt-get install aptitude  
sudo aptitude install ssh

Comandos opcionais:

sudo apt-get install openssh-server # server for secure access from remote machines
sudo apt-get install hotssh # GUI front-end for ssh
    
por karel 31.08.2016 / 08:14