虚拟机速度有点慢,选择Ubuntu子系统
1、版本如下
2、打开修改/etc/ssh/sshd-config文件
2.1
找到并用#注释掉这行:PermitRootLogin prohibit-password
新建一行 ,命令模式点o 添加:PermitRootLogin yes
2.2
PasswordAuthentication no修改为yes
2.3
如果提示 sshd error: could not load host key
则需要重新生成 key
dpkg-reconfigure openssh-server
2.4 设置下密码
passwd root
2.5 为了只是本地调试用,修改防火墙
2.6启动
sudo /etc/init.d/ssh restart
或
service ssh start
2.7测试连接成功