0.更新源列表

sudo apt-get update

1. 首先在服务器上安装ssh的服务器端。

sudo aptitude install openssh-server
或
sudo apt-get install openssh-server

2. 启动ssh-server。

$ /etc/init.d/ssh restart
或
sudo service ssh start

3. 确认ssh-server已经正常工作。

$ netstat -tlp
tcp6 0 0 *:ssh *:* LISTEN -
或
sudo ps -e | grep ssh
 4413 ?   00:00:00 sshd

查看ssh服务是否启动
sudo service ssh start

看到上面这一行输出说明ssh-server已经在运行了。

4. 在Ubuntu客户端通过ssh登录服务器。例如,我现在连接的服务器的IP地址是10.0.118.115,登录的用户名是root。

The authenticity of host '10.0.118.115 (10.0.118.115)' can't be established.
ECDSA key fingerprint is SHA256:z3myuWxVmvgouIfDqYH9Yi/vFdN2WZR8+V13UDaGAwY.
Are you sure you want to continue connecting (yes/no)? 

5.输入yes,然后会提示输入root的密码。
 

相同问题,可以参考的

https://blog.csdn.net/caib1109/article/details/51756175

https://blog.csdn.net/liyuqian199695/article/details/60781127