내 Windows에 "Linux 하위 시스템"을 설치하는 방법은 무엇입니까?

내 Windows에 "Linux 하위 시스템"을 설치하는 방법은 무엇입니까?

나는 모든 Powershell을 시도하여 개발자 모드를 모두 활성화했지만 아무것도 작동하지 않는 것 같습니다. 시도한 것 :

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

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

어떤 사람이 활성화하는 방법이나 왜 내 Windows에서 Linux 하위 시스템을 사용할 수 없는지 설명해줄 수 있나요???

답변1

모든 PowerShell을 시도하여 개발자 모드를 모두 활성화했지만 아무것도 작동하지 않는 것 같습니다.

잘못된 명령을 사용하고 있습니다.

대신 사용해야합니다 Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux. 관리자 권한 PowerShell 명령 프롬프트에서 이 명령을 실행해야 합니다. 메시지가 나타나면 다시 시작해야 합니다.

기능을 설치한 후 나머지 지침을 실행하여 실제로 Ubuntu on Windows위 절차를 설치하려면 WSL만 설치합니다.

여기에 이미지 설명을 입력하세요

이 명령을 사용하여 기능의 이름을 확인할 수 있습니다.

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

관련 정보