遇到问题:
VAWare中安装了Ubuntu-Desktop,Xshell连接失败
解决办法:
首先确认虚拟Ubuntu可以正常联网
可能原因是没有安装openssh服务
sudo apt-get install openssh-server
再次Xshell连接,出现问题
原因:Ubuntu中设置了不允许root用户用密码远程登录
解决办法:用非root用户登录,或者
修改 vim /etc/ssh/sshd_config
找到# Authentication:
LoginGraceTime 120
PermitRootLogin without passwd
StrictModes yes
改成
# Authentication:
LoginGraceTime 120
PermitRootLogin yes
StrictModes yes
重启虚拟机
时间: 2024-10-25 21:41:21