Shell/Bash: get wsl version Example
Shell/Bash Example: This is the "get wsl version" Example. compiled from many sources on the internet by SimpleTutorials.org
How do I check my WSL version?
wsl -l -v
get wsl version
wsl -l -v # If version 2 is installed properly, you will see the version number. # If you don't see a version number, or if you see an error message # you have version 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
wsl version
wsl --list --verbose wsl --set-version
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
how to check wsl version
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
* Summary: This "get wsl version" Shell/Bash Example is compiled from the internet. If you have any questions, please leave a comment. Thank you!