Ubuntu 14.04 has recently been re-installed under the virtual machine, possibly because some of the steps in the installation process have been skip, so the previously installed software was not installed by default this time. Just want to use SECURECRT to Telnet under Windows, and found that login is not on. Suspected that Ubuntu did not open ssh, so
[Email protected]:~$ ps-e |grep SSH
Output has only one row
2156? 00:00:00 ssh-agent
Prove that Ssh-server did not start, try to start with/etc/init.d/ssh start, but did not find the corresponding file.
Then use
[Email protected]:~$ sudo apt-get install Openssh-server
Install OpenSSH server side and finish again
[Email protected]:~$ ps-e |grep SSH
The output at this time:
2156? 00:00:00 ssh-agent
7884? 00:00:00 sshd
Proof that the SSH service has started, SSH again under Windows, and successfully logged in.
Install SSH under Ubuntu