대충이라도 하자

wsl 설치 ( 윈도우에서 리눅스) 본문

꼬꼬마 개발자 노트/Linux

wsl 설치 ( 윈도우에서 리눅스)

Sueeeeee
반응형

1. wsl --install 했는데 안됨

"시스템을 부팅할 필요가 없습니다. " 

 

2. powershell에서 아래의 두 명령어 실행 ( to enable the windows subsystem for linux)

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

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

 

3. ubuntu를 입력하면 아래와 같이 나온다.

"windows subsystem for linux optional component is not enabled."

-> 컴포넌트를 enable하게 해줘야 함

=> powershell을 관리자 계정으로 열어서 아래의 커맨드를 입력

Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux

 

참조 : 

https://appuals.com/how-to-fix-the-wsl-optional-component-is-not-enabled-please-enable-it-and-try-again-error-on-ubuntu/

 

How to Fix 'The WSL Optional Component is not Enabled. Please Enable it and Try again' Error on Ubuntu? - Appuals.com

Ubuntu is a Linux based distribution that is totally free and open source. The program also provides support for Windows 10 and is used by a lot of people

appuals.com

그러고 나면 이제 이렇게 나온다.

 

그러고나서 powershell에 ubuntu를 입력해주거나 

시작메뉴에서 ubuntu실행

 

*** version 1 혹은 2로 변경

wsl --set-default-version 1

wsl --set-default-version 2

반응형
Comments