본문 바로가기

Docker

[Docker설치] 2. WSL 2 installation is incomplete 에러

도커 데스크탑 설치 후 이런 경고창이 떴습니다.

 

 

 

1. Windows PowerShell을 관리자 권한으로 실행

 

 

 

2. Linux Subsystem 활성화 명령어를 입력

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

 

 

 

3. VM Platform 활성화 명령어를 입력

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

 

 

 

4. WSL2 Linux 커널 업데이트 패키지(x64) 설치

wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi

 

 

이 과정을 모두 실행한 뒤 재부팅 하면 도커 데스크탑이 정상적으로 실행됩니다.

 

 

 

 

 

 

 

 

 

 

 

'Docker' 카테고리의 다른 글

[Docker 설치] 4. Ubuntu에 설치하기  (0) 2022.03.12
[Docker설치] 1. Docker desktop  (0) 2022.03.10