1、安装wsl
需要windows版本大于
搜索启用或关闭windows功能
把图片中红点标注的功能勾选,注意勾选hyper-v就不能使用虚拟机类软件,如vm,安卓模拟器一类,点击确定,重启电脑。
打开任务管理器
确保虚拟化已经启用,部分设备可能需要去bios设置,自行查阅下相关资料
下载64位wsl2内核升级包 https%3A//wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi
安装后,设置默认wsl版本
wsl --set-default-version 2
安装linux系统
方法一:可以从微软商店搜索安装,有概率会失败
方法二: 翻到页面最下方,下载你需要的版本 旧版 WSL 的手动安装步骤 | Microsoft Learn在旧版 Windows 上手动(而不是使用 wsl 安装命令)安装 WSL 的分步说明。https://docs.microsoft.com/zh-cn/windows/wsl/install-manual给下载到的文件添加一个.zip后缀,用解压缩软件解压到你想安装的地方
点击里面的ubnutu.exe文件,等待一会就会安装成功
去cmd中输入 wsl -l -v 查看安装的子系统版本
2、安装完成后的设置:
安装完成后会设置自己的用户名,密码(注意不是root账户)
设置root密码
sudo passwd
切换root用户测试
su root
每次切换root用户很麻烦,可以用powershell执行下面这条命令,默认root用户登录,其中参数自己替换下
C:\Users\用户名\AppData\Local\Microsoft\WindowsApps\ubuntu版本.exe config --default-user root
开启ssh服务
首先确保是root用户
vi /etc/ssh/sshd_config
进入之后,修改如下配置,可以直接复制我的,(我修改的项加了注释)
# $OpenBSD: sshd_config,v 1.101 2017/03/14 07:19:07 djm Exp $# This is the sshd server system-wide configuration file. See
# sshd_config(5) for more information.# This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin# The strategy used for options in the default sshd_config shipped with
# OpenSSH is to specify options with their default value where
# possible, but leave them commented. Uncommented options override the
# default value.Port 22 #22端口,ssh服务默认端口
#AddressFamily any
ListenAddress 0.0.0.0 #所有ip都可以联通
#ListenAddress ::#HostKey /etc/ssh/ssh_host_rsa_key
#HostKey /etc/ssh/ssh_host_ecdsa_key
#HostKey /etc/ssh/ssh_host_ed25519_key# Ciphers and keying
#RekeyLimit default none# Logging
#SyslogFacility AUTH
#LogLevel INFO# Authentication:#LoginGraceTime 2m
#PermitRootLogin prohibit-password
#StrictModes yes
#MaxAuthTries 6
#MaxSessions 10
PermitRootLogin yes #把上面那行相同的注释掉,新加一行,允许root账户登录#PubkeyAuthentication yes# Expect .ssh/authorized_keys2 to be disregarded by default in future.
#AuthorizedKeysFile .ssh/authorized_keys .ssh/authorized_keys2#AuthorizedPrincipalsFile none#AuthorizedKeysCommand none
#AuthorizedKeysCommandUser nobody# For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
#HostbasedAuthentication no
# Change to yes if you don't trust ~/.ssh/known_hosts for
# HostbasedAuthentication
#IgnoreUserKnownHosts no
# Don't read the user's ~/.rhosts and ~/.shosts files
#IgnoreRhosts yes# To disable tunneled clear text passwords, change to no here!
PasswordAuthentication yes #允许使用密码登录
#PermitEmptyPasswords no# Change to yes to enable challenge-response passwords (beware issues with
# some PAM modules and threads)
ChallengeResponseAuthentication no# Kerberos options
#KerberosAuthentication no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes
#KerberosGetAFSToken no# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes
#GSSAPIStrictAcceptorCheck yes
#GSSAPIKeyExchange no# Set this to 'yes' to enable PAM authentication, account processing,
# and session processing. If this is enabled, PAM authentication will
# be allowed through the ChallengeResponseAuthentication and
# PasswordAuthentication. Depending on your PAM configuration,
# PAM authentication via ChallengeResponseAuthentication may bypass
# the setting of "PermitRootLogin without-password".
# If you just want the PAM account and session checks to run without
# PAM authentication, then enable this but set PasswordAuthentication
# and ChallengeResponseAuthentication to 'no'.
UsePAM yes#AllowAgentForwarding yes
#AllowTcpForwarding yes
#GatewayPorts no
X11Forwarding yes
#X11DisplayOffset 10
#X11UseLocalhost yes
#PermitTTY yes
PrintMotd no
#PrintLastLog yes
#TCPKeepAlive yes
#UseLogin no
#PermitUserEnvironment no
#Compression delayed
#ClientAliveInterval 0
#ClientAliveCountMax 3
#UseDNS no
#PidFile /var/run/sshd.pid
#MaxStartups 10:30:100
#PermitTunnel no
#ChrootDirectory none
#VersionAddendum none# no default banner path
#Banner none# Allow client to pass locale environment variables
AcceptEnv LANG LC_*# override default of no subsystems
Subsystem sftp /usr/lib/openssh/sftp-server# Example of overriding settings on a per-user basis
#Match User anoncvs
# X11Forwarding no
# AllowTcpForwarding no
# PermitTTY no
# ForceCommand cvs server
重启ssh项目
sudo service ssh restart
使用ssh工具测试链接
成功
3、windows下docker-desktop的安装
官网下载docker-desktop的安装包,一定要确保第一步开启的windows功能都开启了
Download Docker Desktop | Docker
正常软件安装流程
进入软件,点击小齿轮进入设置
勾选你安装的ubnutu
更改镜像仓库地址,我使用的阿里云,网上也有好多,比如中科大等
{"debug": true,"experimental": false,"registry-mirrors": ["https://lcuu39wt.mirror.aliyuncs.com"]
}
设置完之后,打开终端,输入docker ps
就会发现docker和你的linux子系统已经连接起来了
4、存在的问题及解决思路
问题1:wsl每次重启都会给子系统随机分配一个新ip,导致ssh工具每次都要输入新ip,不利于开发
问题2:ssh服务不会自动开启
解决思路:
这是作者写好的一个设置子系统ip的批处理脚本,用管理员权限运行就会自动关闭wsl,设置wsl网卡相关信息,重启wsl,已经打包成了exe供大家使用
设置子系统ip.exe官方版下载丨最新版下载丨绿色版下载丨APP下载-123云盘
但是使用这个脚本还有个问题,就是因为重启了wsl,docker和wsl之间的连接会断开,需要重启一下docker进程和ssh服务,也可以使用脚本来完成这个操作,但是涉及到文件路径问题,所以就不提供了,可以使用chatgpt来完成这个小功能,也可以手动操作一下
重启ssh服务的命令,根据需要修改参数哦
C:\Users\用户名\AppData\Local\Microsoft\WindowsApps\ubuntu2004.exe run "sudo service ssh restart"