docker Desktop - wsl kernel version too low
时间: 2024-06-12 21:10:28 浏览: 216
docker-desktop-4.16.1-amd64.deb
这个问题通常是由于 WSL 内核版本过低导致的。可以尝试更新 WSL 内核版本,或者在 Docker Desktop 中切换到使用 Hyper-V 虚拟化引擎。
更新 WSL 内核版本的步骤如下:
1. 打开 PowerShell(管理员权限)。
2. 运行命令:`dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart`
3. 运行命令:`dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart`
4. 下载并安装 WSL2 Linux 内核更新包:https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi
5. 设置 WSL2 为默认版本:`wsl --set-default-version 2`
如果以上步骤无法解决问题,可以尝试在 Docker Desktop 中切换到使用 Hyper-V 虚拟化引擎:
1. 打开 Docker Desktop。
2. 点击菜单栏中的“Settings”。
3. 在“Resources”选项卡下,选择“WSL Integration”。
4. 取消勾选“Enable integration with my default WSL distro”。
5. 在“General”选项卡下,选择“Use the WSL 2 based engine”。
阅读全文