como instalar o “subsistema linux” nas minhas janelas?

0

eu tentei tudo powershell, permitindo o modo de desenvolvedor tudo e nada parece funcionar. Tentei com:

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

O resultado que recebo usando o 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

alguém poderia me explicar como ativar ou porque eu não posso usar o subsistema linux em minhas janelas ???

    
por Sergio Ramos 06.03.2018 / 21:47

1 resposta

1

I tried everything PowerShell, enabling developer mode everything and nothing seems to work.

Você está usando o comando incorreto.

Você deve usar Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux . Você deve executar esse comando em um prompt de comando elevado do PowerShell. Você deve reiniciar quando solicitado.

Depois de instalar o recurso, execute as instruções restantes para instalar o Ubuntu on Windows . O procedimento acima apenas instala o WSL.

Você pode verificar o nome do recurso usando este comando.

Get-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-*
    
por 06.03.2018 / 22:34