xshell连接windows本地的ubuntu子系统
2021-03-09 22:28
标签:openssh 端口号 windows inf 本地 nbsp 安装 ati ima 自带的ssh server不好用,需要先卸载再安装。 现在就可以用 xshell 登陆 ubuntu on windows 了,IP 是 127.0.0.1, 但是要注意,cmd 的窗口还不能关掉。关掉后 sshd 服务也会关掉 xshell连接windows本地的ubuntu子系统 标签:openssh 端口号 windows inf 本地 nbsp 安装 ati ima 原文地址:https://www.cnblogs.com/niuben/p/12727252.html1. 卸载 ssh server
sudo apt-get remove openssh-server
2. 安装 ssh server
sudo apt-get install openssh-server
3. 修改 ssh server 配置
sudo vim /etc/ssh/sshd_config
Port 2222 # 默认的是22,但是windows有自己的ssh服务用的也是22端口,建议修改成别的端口号
PasswordAuthentication yes # 使用密码登录
4. 启动 ssh server
sudo service ssh --full-restart
上一篇:FastAPI框架