1 安装ubuntu上的ssh功能
sudo apt-get install openssh-server openssh-client
/etc/init.d/ssh restart
2 激活root
(1)执行
su root
(2)输入密码
(3)修改root密码
sudo password root
(4)设置密码
确保切换到root
su root
修改/etc/ssh/sshd_config,
vim/etc/ssh/sshd_config
按i
把PermitRootLogin without-password 注释掉
添加PermitRootLogin yes
按esc键,输入:wq! 强制保存、退出。
/etc/init.d/ssh restart
4 此时可以使用SecureCRT软件用root帐号登录ubuntu了。
原文链接:https://www.f2er.com/ubuntu/354909.html