upgrade wsl1 to wsl2 code example
Example 1: update to wsl2
#enable wsl
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
#make sure windows version is >=2004
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
#restart
wsl --set-default-version 2
#if kernal error https://docs.microsoft.com/en-us/windows/wsl/wsl2-kernel
Example 2: change wsl to version 1
wsl --set-version Ubuntu-18.04 1
// Run the above command from windows powershell
// This assumes you are running Ubuntu 18.04
Example 3: switch installed linx to wsl2
wsl.exe --set-version Ubuntu 2
Example 4: enable wsl2
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
Example 5: update to wsl2 windows 10
Enable-WindowsOptionalFeature -Online -FeatureName VirtualMachinePlatform -NoRestart
Example 6: how to WSL2
Enable Windows Subsystem for linux: dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
Enable Virtual Machine Platform: dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
Download WSL2 kernel: https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi
Set default WSL verison: wsl --set-default-version 2