한국어
Appearance
한국어
Appearance
Before using WSL Dashboard, your Windows system must have WSL 2 properly enabled and configured. This section will guide you through the necessary setup steps.
WSL 2 has minimum Windows version requirements. Press Win + R, type winver, and check your version:
IMPORTANT
If your version is too old, please upgrade your system through Windows Update first.
WSL 2 runs on virtualization technology, so Virtualization Technology must be enabled in your motherboard's BIOS/UEFI.
Intel VT-x or AMD-V and set it to Enabled.You need to enable the "Windows Subsystem for Linux" and "Virtual Machine Platform" features.
Win + S, search for and open "Turn Windows features on or off".Run PowerShell as Administrator and execute the following commands:
# Enable WSL
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
# Enable Virtual Machine Platform
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestartAfter execution, restart your computer manually.
Modern versions of Windows can get WSL updates through the Microsoft Store.
.msixbundle or .msi installer from WSL GitHub Releases for an offline installation.To ensure that newly installed distributions use WSL 2 by default, run the following in your terminal:
wsl --set-default-version 2wsl --set-version <DistroName> 2 to upgrade an existing WSL 1 instance to WSL 2.