xshell登陸Win10Linux子系統

傑克.陳發表於2018-11-06
原文: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


相關文章