How to downgrade Wsl2 to wsl1? [closed]
I'm using wsl 2 currently but it seems I can't run Ubuntu with it anymore. So I want to downgrade my wsl from 2 to 1
Solution 1:
The method is described on Microsoft Site: https://docs.microsoft.com/en-us/windows/wsl/install-win10
How to set your wsl instance version
-
First list your distribution
C:\WINDOWS\system32>wsl --list Windows Subsystem for Linux Distributions: Ubuntu-18.04 (Default)
-
And then set it to version 1
C:\Users\priv>wsl --set-version Ubuntu-18.04 1
But if your problem is your rootfs, you might need to reset your instance like matigo's answer suggested.
Solution 2:
I do not believe you can downgrade, but you can completely reset WSL2 with a couple of commands:
- Open Command Prompt
- "Uninstall" WSL2:
lxrun.exe /uninstall /full
- Delete everything in
AppData\Local\lxss*
- Re-install WSL2:
lxrun.exe /install
Alternatively, depending on which version of Windows you're using:
- Open "Add/Remove Programs"
- Find "Ubuntu" and access the advanced options
- Choose from:
-
repair
⇢ attempts to fix any broken configuration files -
reset
⇢ returns the installation to default (same as the process above) -
terminate
⇢ kill the VM, darn the consequences -
uninstall
⇢ remove WSL2 from the system
-