- 安装软件
sudo apt-get install openssh-server
- 设置ssh开机启动
sudo systemctl enable ssh
- 开启ssh服务
sudo systemctl start ssh
- 允许 root 远程登录
sudo vim /etc/ssh/sshd_config
将 **** 修改为 yes
PermitRootLogin ****
参考
https://www.cyberciti.biz/faq/ubuntu-linux-install-openssh-server/