wsl

wsl2 安装
设置版本
1、默认安装 Linux 时是第一代 WSL,要在以后安装 Linux 的时候默认启用 WSL2,在 Windows PowerShell 中运行命令: wsl --set-default-version 2
2、如果已经安装了 Linux 系统并且是第一代,可以升级到 WSL2。同样,WSL2 也可以降级到 WSL1。 wsl -l -v #查看已安装 Linux 版本和名称,完整命令格式:wsl --list --verbose
wsl --set-version Ubuntu 2 #升级到 WSL2,其中 Ubuntu 是已经安装的 Linux 名称,命令格式:wsl --set-version
默认安装
wsl install
自定义安装
下载镜像到安装目录 https://wslstorestorage.blob.core.windows.net/wslblob/Ubuntu2204-221101.AppxBundle 解压后打开 ubuntu.exe
关机操作,在 powershell 中执行以下命令来关闭某一个 linux 发行版:
使用
wsl --terminate <发行版名称> wsl --list --verbose 查看发行版运行状态 或者关闭所有发行版:
wsl --shutdown
卸载镜像
wsl --list,查看你安装的版本,然后输入 wsl --unregister <要卸载的发行版>,之后删掉目录下的那个子系统就可以了
导出备份
- 在 Windows PowerShell 中输入如下命令
wsl -l --all -v
- 导出分发版为 tar 文件到 d 盘(如果你只是备份,那么下面的到第二步就可以了)
wsl --export Ubuntu E:\wsl-ubuntu.tar
- 注销当前分发版
wsl --unregister Ubuntu-20.04
- 重新导入并安装WSL在d:wsl-ubuntu20.04(迁移/还原到其他目录)
wsl --import --version 2 (代表wsl2)
wsl --import Ubuntu e:wsl-ubuntu.tar e:wsl-ubuntu20.04.tar --version 2
5.删除tar文件(可选)
del d:wsl-ubuntu.tar
配置lib
cd /usr/lib/wsl
mkdir lib2
ln -s lib/* lib2
vim /etc/ld.so.conf.d/ld.wsl.conf
or
cd /usr/lib/wsl/lib
mv libcuda.so libcuda.so.bak
mv libcuda.so.1 libcuda.so.1.bak
ln -s libcuda.so.1.1 libcuda.so.1
ln -s libcuda.so.1.1 libcuda.so
配置clash
New-NetFirewallRule -DisplayName "WSL" -Direction Inbound -InterfaceAlias "vEthernet (WSL)" -Action Allow
#!/bin/sh
# 注意:这个 ip 地址和我们在 windows 中通过 ipconfig 获取的地址等价
# hostip=$(cat /etc/resolv.conf | grep nameserver | awk '{ print $2 }')
hostip=127.0.0.1
# WSL 自身的 ip
wslip=$(hostname -I | awk '{print $1}')
# Windows 上代理软件监听的端口,河对岸为 10808,注意要选中河对岸的 "Allow connections from the LAN"
port=7897
# 注意代理有两种方式,一种基于 http,一种基于 socket5,河对岸是基于 socket5 的
#PROXY_HTTP="socks5://${hostip}:${port}"
PROXY_HTTP="http://${hostip}:${port}" # 如果是基于 http 的代理,则使用该命令
# 开启代理
set_proxy(){
export http_proxy="${PROXY_HTTP}"
export HTTP_PROXY="${PROXY_HTTP}"
export https_proxy="${PROXY_HTTP}"
export HTTPS_proxy="${PROXY_HTTP}"
export ALL_PROXY="${PROXY_HTTP}"
export all_proxy="${PROXY_HTTP}"
# 配置 git 的代理
git config --global http.https://github.com.proxy ${PROXY_HTTP}
git config --global https.https://github.com.proxy ${PROXY_HTTP}
echo "Proxy has been opened."
}
# 关闭代理
unset_proxy(){
unset http_proxy
unset HTTP_PROXY
unset https_proxy
unset HTTPS_PROXY
unset ALL_PROXY
unset all_proxy
git config --global --unset http.https://github.com.proxy
git config --global --unset https.https://github.com.proxy
echo "Proxy has been closed."
}
# 测试代理是否开启成功
test_setting(){
echo "Host IP:" ${hostip}
echo "WSL IP:" ${wslip}
echo "Try to connect to Google..."
resp=$(curl -I -s --connect-timeout 5 -m 5 -w "%{http_code}" -o /dev/null www.google.com)
if [ ${resp} = 200 ]; then
echo "Proxy setup succeeded!"
else
echo "Proxy setup failed!"
fi
}
# 根据我们的输入来执行代理的开启、关闭和测试过程
if [ "$1" = "set" ]
then
set_proxy
elif [ "$1" = "unset" ]
then
unset_proxy
elif [ "$1" = "test" ]
then
test_setting
else
echo "Unsupported arguments."
fi
vim ~/.bashrc
# proxy alias
alias proxy="source /etc/scripts/proxy.sh"
source ~/.bashrc
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main
deb https://security.debian.org/debian-security bullseye-security main deb-src https://security.debian.org/debian-security bullseye-security main