这里你应该已经成功安装wsl了
没安装的见这个https://learn.microsoft.com/zh-cn/windows/wsl/install
https://learn.microsoft.com/zh-cn/windows/wsl/install#upgrade-version-from-wsl-1-to-wsl-2
下载相关文件
https://github.com/yuk7/ArchWSL/releases
解压后,我们打开终端,执行Arch.exe,会自动安装
里面的ext4.vhdx是安装后生成的
配置
首先在终端进入Arch.exe
然后配置密码
passwd
输入两次你的密码
然后我们配置 sudo 权限
echo "%wheel ALL=(ALL) ALL" > /etc/sudoers.d/wheel
添加用户
useradd -m -G wheel -s /bin/bash {username}
设置默认用户密码
passwd {username}
设置Arch.exe默认启动的用户
Arch.exe config --default-user {username}
配置pacman
自动设置镜像
curl -l -O "https://raw.githubusercontent.com/LS-KR/Arch-Install-Shell-Stable/main/ustc-mirror.sh"
sudo sh ./ustc-mirror.sh
配置pacman
sudo pacman-key --init
sudo pacman-key --populate
sudo pacman -Syy archlinux-keyring
sudo pacman -Su
更新系统软件包
sudo pacman -Syyu
windows会自动配置