wsl2 配置arch linux

本文来自我的笔记 https://github.com/levinit

以下内容中windows命令在powershell或windows terminal(建议,其默认使用powershell)中执行。

启用wsl2

  • 启用hyperv
  • 启用用于linux的子系统
Enable-WindowsOptionalFeature -Online -FeatureName VirtualMachinePlatform

家庭版启用hyperv,创建一个bat文件如hyperv.bat,内容如下:

pushd "%~dp0"

dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt

for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"

del hyper-v.txt

Dism /online /enable-feature /featurename:Microsoft-Hyper-V-All /LimitAccess /ALL

管理员用户执行上面的bat文件。

可能要重启系统。

安装wsl2 archlinux

  1. 将wsl作为默认wsl版本:

    wsl --set-default-version 2

    使用wsl -l -v查看当前wsl 版本及linux列表。

    可能提示需要更新其内核组件,根据提示的网址下载内核安装。

  2. 下载ArchWSL2,解压目录,这里假设将加压的目录ArchWSL2放到C:\\目录下,点击目录内的Arch2.exe安装。
  3. C:\\ArchWSL2加入环境变量方便使用

    搜索path,在 系统属性--环境变量 中编辑 Path 行,添加该环境变量。

arch 基本配置

以下内容在wsl archlinux的shell中执行,根据需要进行一些基本配置:

#密钥初始化
pacman-key --init
pacman-key --populate archlinux

#修改源,使用China源
curl 'https://www.archlinux.org/mirrorlist/?country=CN&protocol=https&ip_version=4'|sed  "s/^#//" >/etc/pacman.d/mirrorlist

#更新系统
pacman -Syyu --noconfirm

#root密码
passwd root

#添加archlinuxcn源(可选)
echo '[archlinuxcn]
Server = https://mirrors.tuna.tsinghua.edu.cn/archlinuxcn/$arch' >> /etc/pacman.conf
pacman -Syy
pacman -S archlinuxcn-keyring --noconfirm

#安装一些软件(可选)
pacman -S --noconfirm vim htop git sudo

#添加一个普通用户(可选)
useradd -m -g wheel levin


#将windows的一些目录与linux共用(可选)
#ln -sf /mnt/c/path/to/Documents ~/

设置wsl默认登录用户

archlinux的wsl默认使用root用户登录。在wsl装创建了普通用户后,在windows terminal中配置wsl默认登录用户:

 arch2 config --default-user levinit

wsl2硬件资源分配

在用户目录C:\\Users\\下创建.wslconfig文件:

[wsl2]
#kernel=C:\\temp\\myCustomKernel
memory=4GB # 将WSL 2中的VM内存限制为4 GB
processors=2 #使WSL 2 VM使用两个虚拟处理器

你可能感兴趣的:(linux,windows)