¿Cómo instalar el "subsistema Linux" en mi Windows?

¿Cómo instalar el "subsistema Linux" en mi Windows?

Probé todo con PowerShell, habilitando el modo desarrollador y nada parece funcionar. Probado con:

DISM.exe /Online /Enable-Feature /All /FeatureName:Microsoft-Windows-Subsystem-Linux /NoRestart

El resultado que obtengo usando powershell:

PS C:\Windows\system32> DISM.exe /Online /Enable-Feature /All /FeatureName:Microsoft-Windows-Subsystem-Linux /NoRest

Deployment Image Servicing and Management tool
Version: 10.0.14393.0

Image Version: 10.0.14393.0    


    Error: 0x800f080c

Feature name Microsoft-Windows-Subsystem-Linux is unknown.
A Windows feature name was not recognized.
Use the /Get-Features option to find the name of the feature in the image and tr
y the command again.

The DISM log file can be found at C:\Windows\Logs\DISM\dism.log

¿Alguien podría explicarme cómo habilitarlo o por qué no puedo usar el subsistema Linux en mi Windows?

Respuesta1

Probé todo PowerShell, habilitando el modo desarrollador todo y nada parece funcionar.

Estás utilizando el comando incorrecto.

Deberías utilizarlo Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linuxen su lugar. Debe ejecutar este comando en un símbolo del sistema elevado de PowerShell. Debe reiniciar cuando se le solicite.

Una vez que haya instalado la función, siga el resto de las instrucciones; para instalar realmente, Ubuntu on Windowsel procedimiento anterior solo instala WSL.

ingrese la descripción de la imagen aquí

Puede verificar el nombre de la función utilizando este comando.

Get-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-*

información relacionada