Ubuntu安装SSH并启用root用户远程登录
1. 安装ssh
默认不会安装ssh,所以需要手动安装
sudo apt-get install openssh-server openssh-client
安装完成后需要重启ssh
sudo /etc/init.d/ssh restart
2. 配置root用户远程登录
完成后发现使用ssh连接工具并不能连接上,需要我们更改配置文件
vim /etc/ssh/sshd_config
修改其中的PermitRootLogi为yes
# Authentication:
LoginGraceTime 120
#PermitRootLogin prohibit-password
PermitRootLogin yes
StrictModes yes
原文链接:https://www.f2er.com/ubuntu/349699.html