安装WSL2

安装WSL2

我将会按照 Windows Subsystem for Linux Installation Guide for Windows 10 官方文档来配置

以管理员的权限打开powershell


image

执行下面这条指令

dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart

image

然后检查您的系统版本,它必须更新到2004版,19041或更高版本。如果没有,你可以下载一个官方工具 windows update assistant

更新到正确版本后
运行此代码,然后重新启动计算机

dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
image

重新启动计算机后,请在powershell上运行代码

wsl --set-default-version 2

image

然后应该更新linux内核, 到官方网站 official website, 下载内核并安装
image

image

然后,去你的win商店搜索ubuntu并选择一个版本下载,我选择20.04LTS

image

然后打开它
image

如果你像我一样碰到这个报错
image

在cmd中以管理员权限运行这个代码,源自issues

sc query LxssManager
sc stop LxssManager
sc start LxssManager
sfc /scannow

然后打开ubuntu,稍等一下。
设置您的姓名和密码。
运行此命令检查您的版本

wsl --list --verbose

然后将WSL2设置为默认

wsl --set-version  

我根据版本设置为 wsl --set-default-version 2

image

最后,你就成功安装好了!

欢迎大家来我的博客: Zhong Wanli
本篇文章的英文版: win10 install wsl2

你可能感兴趣的:(安装WSL2)