我在 Azure 上运行 Windows 2025 Server Core VM。我在其上运行了 Azure DevOps 构建代理、docker for Windows 容器和 powershell core。所有这一切都运行正常。
我运行了没有参数的 WSL 命令,并对安装 WSL 的提示说“是”。
然后我尝试安装 WSL:
PS C:\Users\azadmin> wsl --install Ubuntu-18.04
Downloading: Ubuntu 18.04 LTS
Installing: Ubuntu 18.04 LTS
PS C:\Users\azadmin> wsl
Windows Subsystem for Linux has no installed distributions.
Use 'wsl.exe --list --online' to list available distributions
and 'wsl.exe --install <Distro>' to install.
Distributions can also be installed by visiting the Microsoft Store:
https://aka.ms/wslstore
Error code: Wsl/Service/CreateInstance/GetDefaultDistro/WSL_E_DEFAULT_DISTRO_NOT_FOUND
我做了一些研究,意识到我需要从 B 系列扩展到 D 系列,以便在Install-WindowsFeature Hyper-V
出现故障时启用 Hyper-V 嵌套虚拟化。因此,我运行了以下命令并重新启动:
安装-Windows功能 Hyper-V、容器、DHCP
行为仍然没有改变。
我甚至启动了第二个全新的 Server Core VM 并验证了相同的行为。
** Windows 服务器 2022 **
我在最新更新的 Server 2022 中遇到了不同的错误Class not registered
PS C:\Users\azadmin> wsl --install -d ubuntu
Class not registered
PS C:\Users\azadmin> systeminfo | findstr /B /C:"OS Name" /C:"OS Version"
>>
OS Name: Microsoft Windows Server 2022 Datacenter Azure Edition
OS Version: 10.0.20348 N/A Build 20348
PS C:\Users\azadmin>
我甚至尝试过Install-WindowsFeature Microsoft-Windows-Subsystem-Linux
。
所做的只是在输出中添加一行wsl --install
PS C:\Users\azadmin> wsl --install
Windows Subsystem for Linux is already installed.
Class not registered
PS C:\Users\azadmin>