Ubuntu开通SSH和root登录方法
Ubuntu开通SSH和root登录方法
駝駱仧Ubuntu开通SSH和root登录方法
Ubuntu开通SSH方法
开通SSH登录方法:
1,必须切换成为root用户
1 | sudo -i |
2,先更新软件列表和更新软件
1 | sudo apt-get update |
3,先更新软件列表和更新软件
1 | sudo apt-get upgrade |
4,安装ssh
1 | apt-get install ssh |
5,启动ssh服务
1 | sudo /etc/init.d/ssh start |
6,检查是否有ssh环境
1 | ps -e | grep ssh |
开通root登录SSH权限
1, 使用普通用户登录后切换root
1 | sudo -i |
2,创建root管理员密码
1 | passwd root |
3,开启root登录
1 | sudo sed -i 's/^#?PermitRootLogin.*/PermitRootLogin yes/g' /etc/ssh/sshd_config |
4,开启密码验证
1 | sudo sed -i 's/^#?PasswordAuthentication.*/PasswordAuthentication yes/g' /etc/ssh/sshd_config |
5,重启ssh服务
1 | service sshd restart |
6,检查是否有ssh环境
1 | ps -e | grep ssh |
————————————————
原文链接:https://syjn.blogspot.com/2023/08/openwrtvmwareubuntuopenwrtx96-max.html 感谢!
评论
匿名评论隐私政策