windows10通过Microsoft Store安装linux子系统后,进入报错

WslRegisterDistribution failed with error: 0x8007019e
The Windows Subsystem for Linux optional component is not enabled. Please enable it and try again.
See https://aka.ms/wslinstall for details.

解决办法如下:

1,首先,请确保在计算机的 BIOS 内已启用虚拟化。

2,WslRegisterDistribution 失败并出现错误 0x8007019e的原因---未启用“适用于 Linux 的 Windows 子系统”可选组件:
打开“控制面板” -> “程序和功能” -> “打开或关闭 Windows 功能”-> 选中“适用于 Linux 的 Windows 子系统”.

或者:

以管理员身份打开 PowerShell 并运行:

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

3,启用“虚拟机平台”可选功能。 计算机需要虚拟化功能才能使用此功能。

以管理员身份打开 PowerShell 并运行:

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

或者:

打开“控制面板” -> “程序和功能” -> “打开或关闭 Windows 功能”-> 选中“虚拟机平台”

上一篇:Windows10的Ubuntu20.04子系统安装GUI界面并用远程连接


下一篇:使用let实现循环小例子