Answers for "wsl2 windows 10"

6

How to Install WSL2

dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
wsl --set-default-version 2
Posted by: Guest on April-27-2021
7

windows features windows subsystem for linux not

Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
Posted by: Guest on February-08-2020
4

wsl2 windows 10

//Enable WSL 2 on windows 10 - Run these from an admin powershell
//Enable Microsoft Hyper V first
DISM /Online /Enable-Feature /All /FeatureName:Microsoft-Hyper-V
bcdedit /set hypervisorlaunchtype auto
wsl.exe --set-version Ubuntu 2

"The Hyper-V feature is not required, but Virtual Machine Platform (which includes the Hyper-V hypervisor) is required"
Posted by: Guest on March-10-2021
1

switch installed linx to wsl2

wsl.exe --set-version Ubuntu 2
Posted by: Guest on July-22-2020
0

install wsl2

#Open PowerShell as Administrator and run
#Step 1 - Enable the Windows Subsystem for Linux
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart

#Step 2 - Check requirements for running WSL 2
#For x64 systems: Version 1903 or higher, with Build 18362 or higher.

#Step 3 - Enable Virtual Machine feature
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
#Restart your machine to complete the WSL install and update to WSL 2.

#Step 4 - Download and install the Linux kernel update package
https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi

#Step 5 - Set WSL 2 as your default version
wsl --set-default-version 2
Posted by: Guest on May-07-2021
1

Install WSL on WIndows10

dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
Posted by: Guest on July-30-2021

Browse Popular Code Answers by Language