sudo passwd root
vim /etc/ssh/sshd_config
在第50多行 PasswordAuthentication no 改成yes
后面再加一句 PermitRootLogin yes
重启ssh服务 sudo service ssh restart
sudo passwd root
vim /etc/ssh/sshd_config
在第50多行 PasswordAuthentication no 改成yes
后面再加一句 PermitRootLogin yes
重启ssh服务 sudo service ssh restart
#!/bin/bash
echo root:你哒密码 |sudo chpasswd root
sudo sed -i ‘s/^.*PermitRootLogin.*/PermitRootLogin yes/g’ /etc/ssh/sshd_config;
sudo sed -i ‘s/^.*PasswordAuthentication.*/PasswordAuthentication yes/g’ /etc/ssh/sshd_config;
sudo reboot
打开了新世界的大门