完美解决linux不能编辑sshd_cofig和实现xshell远程连接的问题
2017-11-26 16:32 bighong 阅读(5851) 评论(0) 编辑 收藏 举报第一步:我们使用命令行vim /etc/ssh/sshd_config 执行修改,强制保持 :wq! 系统不让我们修改这个文件
"/etc/ssh/sshd_config"
"/etc/ssh/sshd_config" E212: Can't open file for writing
Press ENTER or type command to continue
既然不让我们编辑 我们就换个命令行
第二步:命令行输入 sudo gedit /etc/ssh/sshd_config,
系统提示我们输入密码,输入密码即可
执行 以上步骤之后就可以修改,并且修改一下的设置就可以了
sshd的设置不允许root用户用密码远程登录
修改 vim /etc/ssh/sshd_config
找到# Authentication:
LoginGraceTime 120
PermitRootLogin without passwd
StrictModes yes
改成
# Authentication:
LoginGraceTime 120
PermitRootLogin yes
StrictModes yes
重启虚拟机