修改 root 密码
ubuntu@VM-46-251-ubuntu:~$ sudo passwd root Enter new UNIX password: Retype new UNIX password: passwd: password updated successfully
sudo 权限修改
/etc/ssh/sshd_config
ubuntu@VM-46-251-ubuntu:~$ su Password: root@VM-46-251-ubuntu:/home/ubuntu# root@VM-46-251-ubuntu:/home/ubuntu# vi /etc/ssh/sshd_config
然后进入
sshd_config
中,/
为查找命令,找到PermitRootLogin prohibit-password
加#
注释掉
紧接着加入PermitRootLogin yes
,方法为i
进入编辑模式,加入设置,:wq
写入退出重启 SSH 服务,使配置生效
root@VM-46-251-ubuntu:/home/ubuntu# service ssh restart
Done.
为没使用过 Linux 的同学推荐 TLCL