tentei de tudo no PowerShell, habilitando tudo no modo de desenvolvedor e nada parece funcionar. Tentei com:
DISM.exe /Online /Enable-Feature /All /FeatureName:Microsoft-Windows-Subsystem-Linux /NoRestart
O resultado que obtenho 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 habilitar ou por que não consigo usar o subsistema Linux no meu Windows ???
Responder1
Tentei de tudo no PowerShell, habilitando tudo no modo de desenvolvedor e nada parece funcionar.
Você está usando o comando incorreto.
Você deveria usar Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
em vez disso. Você deve executar este comando em um prompt de comando elevado do PowerShell. Você deve reiniciar quando solicitado.
Depois de instalar o recurso, execute o restante das instruções, para realmente instalar Ubuntu on Windows
o procedimento acima instala apenas o WSL.
Você pode verificar o nome do recurso usando este comando.
Get-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-*