win11安装wsl2
时间: 2023-10-04 21:12:07 浏览: 159
WSL CentOS 7.9-2111(win11 WSL 上安装 CentOS 7 系统)
要 Windows 11 上安装 WSL 2,您需要遵循以下步骤:
1. 打开 PowerShell 作为管理员。
2. 运行以下命令以启用 WSL 功能:
```
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
```
3. 运行以下命令以启用虚拟机平台功能:
```
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
```
4. 下载并安装 WSL 2 Linux 内核更新包。您可以从以下链接下载它:
https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi
5. 将 WSL 2 设置为默认版本。在 PowerShell 中运行以下命令:
```
wsl --set-default-version 2
```
6. 安装一个 Linux 发行版。您可以从 Microsoft Store 中下载各种 Linux 发行版。
完成这些步骤后,您就可以在 Windows 11 上使用 WSL 2 了。
阅读全文