WSL 是一个集成在 Windows 上的虚拟化工具,现有两个版本,WSL1 和 WSL2。WSL1 是 Windows32 套壳,可以更快地访问从 Windows 装载的文件,可以与Vmware等虚拟机共存。WSL2 拥有完整Linux内核,文件密集型操作(如 git 克隆、npm 安装、apt 更新、apt 升级等)的速度更快。对于个人而言还是比较习惯Windows的文件系统,虽然WSL1没有完整的Linux内核,有些操作完成不了,但完全可以装一个Vmware去完成,而且WSL1也不影响其他虚拟机的使用,所以我选择WSL1。

参考

安装

以管理员身份打开Windows Powershell

  1. 启用 WSL,然后重启电脑
1
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
  1. 安装 Linux 子系统
1
2
3
4
5
# 设置默认WSL版本为1
wsl --set-default-version 1

# 这里选择安装最新版 Ubuntu(挂代理)
wsl --install -d Ubuntu

常用 WSL 命令

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 列出已安装的 Linux 发行版及 WSL 版本
wsl -l -v

# 列出所有可安装的 linux 版本(ubuntu、debian、kali等)
wsl --list --online

# 关闭 WSL
wsl --shutdown

# 卸载 Linux 发行版
wsl --unregister <DistributionName>

# 将发行版导出到 TAR 文件(镜像备份)
wsl --export <Distribution Name> <FileName>

# 导入新发行版(镜像恢复)
wsl --import <Distribution Name> <InstallLocation> <FileName>

# 设置默认用户为 root(以 ubuntu 为例)
ubuntu config --default-user root

# 切换回设置的用户(以 ubuntu 为例)
ubuntu config --default-user <uesname>

配置

设置代理

临时代理(重启失效)

1
2
3
export https_proxy="http://127.0.0.1:7890"
export http_proxy="http://127.0.0.1:7890"
export all_proxy="socks5://127.0.0.1:7891"

检查代理是否成功(显示为国外ip就是成功了)

1
curl ip.sb

永久代理
将以上内容写入/etc/profile

1
2
3
export https_proxy="http://127.0.0.1:7890"
export http_proxy="http://127.0.0.1:7890"
export all_proxy="socks5://127.0.0.1:7891"

移除代理

1
2
3
unset https_proxy="http://127.0.0.1:7890"
unset http_proxy="http://127.0.0.1:7890"
unset all_proxy="socks5://127.0.0.1:7891"

查看环境变量,检查代理是否生效

1
env

更换软件源

  1. 备份原来的源
1
cp /etc/apt/sources.list /etc/apt/sources.list.bak
  1. 修改源
1
nano /etc/apt/sources.list

将内容全部替换为:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
  1. 更新软件
1
apt-get update && apt-get upgrade

网络配置

开放防火墙

默认情况下Windows的防火墙会阻止WSL2中应用对Windows的网络访问

1
New-NetFirewallRule -DisplayName "WSL" -Direction Inbound  -InterfaceAlias "vEthernet (WSL)"  -Action Allow

WSL2的远程访问

从Windows访问WSL2中的端口可以使用localhost127.0.0.1,从localhost访问速度低于127.0.0.1,并且使用localhost时WSL的某些端口无法在Windows上访问,127.0.0.1没有这个问题;
WSL2真实IP是类似于这样的:172.30.239.234,与本机IP:192.168.1.x并不能互访,其实就是一层NAT,微软通过一些技术手段把通过127.0.0.1的互访完全打通了,把localhost172.30.239.234绑定在一起,但没有和127.0.0.1一样打通所有端口,而且都无法从其它主机访问WSL2中的服务,必须做端口转发才能实现WSL2的远程访问

示例:80端口的转发

1
netsh interface portproxy add v4tov4 listenport=80 listenaddress=0.0.0.0 connectport=80 connectaddress=localhost

开启之后就可以通过172.30.239.234192.168.1.x远程访问了

查看端口转发

1
netsh interface portproxy show all

删除端口转发

1
netsh interface portproxy delete v4tov4 listenport=80 listenaddress=0.0.0.0

避免端口冲突
通过localhost配置的端口转发,在和Windows的服务端口冲突时, WSL的服务将会被覆盖!
通过WSL的地址172.30.239.234配置的端口转发,在和Windows的服务端口冲突时, Windows的服务将会被覆盖!

修改 DNS

1
nano /etc/resolv.conf

修改 HOST

1
nano /etc/hosts

注意通过电脑127.0.0.1访问WSL内的服务发挥作用的是电脑的hosts文件

修改解析服务配置文件

1
nano /etc/systemd/resolved.conf

其他设置

设置中文语言

1
2
3
4
# 安装中文语言包
apt-get install language-pack-zh-hans
# 修改配置文件
sed -i 's/LANG=C.UTF-8/LANG=zh_CN.UTF-8/g' /etc/default/locale