win10安装Ubuntu,用Xshell连接

被刻印的时光 ゝ 提交于 2021-01-03 11:37:06

一、安装Ubuntu

安装Ubuntu,安装过程就不详细说了,我是从微软商店下载的Ubuntu安装,没有用VMware,想用Xshell连接Ubuntu,中间一直出问题,现在解决,总结一下。

二、配置ssh server

自带ssh server不好用,先卸载再安装即可

// 卸载
sudo apt-get remove openssh-server
// 安装
sudo apt-get install openssh-server

三、编辑配置文件

vim /etc/ssh/sshd_config

修改端口:

  Port 36000  # 默认的是22,但是windows有自己的ssh服务用的也是22端口,修改一下
  #还有一项PasswordAuthentication
  # 改为yes可以使用密码登录,ssh密钥登录使用默认no
  PasswordAuthentication yes

四、重启服务

sudo service ssh --full-restart

五、查看ip

ifconfig

六、Xshell连接

然后输入用户名密码就🆗啦!!!

问题记录:

错误:

Could not read response to hello message from hook [ ! -f /usr/bin/snap ] || /usr/bin/snap advise-snap --from-apt 2>/dev/null || true: Success

运行:

sudo rm -rf /etc/apt/apt.conf.d/20snapd.conf

 

https://www.jianshu.com/p/039411d2c1f6

https://nowtime.cc/linux/683.html

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!