xshell登陸Win10 Linux子系統
阿新 • • 發佈:2018-11-06
key span 端口 spl ice nss pat code 系統 原文:xshell登陸Win10 Linux子系統
版權聲明:轉載請註明出處 https://blog.csdn.net/anychenp/article/details/78922320
修改端口
cd /etc/ssh
#備份
sudo cp sshd_config sshd_config.bak
sudo vim sshd_config
修改sshd_config
Port 2233 #修改端口
ListenAddress 0.0.0.0 #打開本地監聽
#StrictModes yes #註釋掉
PasswordAuthentication yes #允許密碼登陸
重啟ssh
sudo service ssh restart
重新生成host key
sudo dpkg-reconfigure openssh-server
完成
問題:關了bash會斷線
https://github.com/Microsoft/WSL/issues/612
xshell登陸Win10 Linux子系統