使用Xshell连接WSL中的Ubuntu

AI摘要

正在生成中……


1.查看是否已经安装SSH

1
sudo ps -ef|grep ssh

2.安装SSH

1
2
3
4
5
# 更新系统
sudo apt update && sudo apt upgrade -y

# 卸载并安装SSH
sudo apt autoremove --purge openssh-server -y && sudo apt install openssh-server -y

3.设置root密码

1
sudo passwd root

Snipaste_2024-07-31_12-05-10

4.修改ssh配置

1
2
3
4
5
6
7
8
9
# 编辑配置文件
sudo vim /etc/ssh/sshd_config

# 添加配置(开放端口)
Port 2222

# 后面添加允许root用户使用密码登录
PasswordAuthentication yes
PermitRootLogin yes

Snipaste_2024-07-31_12-59-32

Snipaste_2024-07-31_12-22-15

输入:wq保存并退出

5.重启并查看本机IP

1
2
3
4
5
# 启动ssh
sudo service ssh start

# 查看本机IP
ip address

image-20240731115555638

6.Xshell中配置连接

Snipaste_2024-07-31_13-04-01

Snipaste_2024-07-31_13-05-14