1. 修改 root 密碼
sudo passwd root
2. 以其他賬戶登入,通過 sudo nano 修改 /etc/ssh/sshd_config :
xxx@ubuntu:~$ su - root
root@ubuntu:~# vi /etc/ssh/sshd_config
3. 註釋掉 #PermitRootLogin without-password,改為 PermitRootLogin yes
# Authentication:
LoginGraceTime 120
PermitRootLogin yes
StrictModes yes
4. 重啟 ssh 服務
root@ubuntu:~# sudo service ssh restart
ssh stop/waiting
ssh start/running, process 1499
root@ubuntu:~#