In #Windows11 I have an app called "Ubuntu"
It brings up a terminal with an Ubuntu bash shell in it
Can I have 2 distinct Ubuntu installations ?
How ?
@abbienormal
For trying out stuff like that I'd like to have Windows. The only problem is that I only have Windows on my work laptop...
If I'm not mistaken, wsl is some sort of a container mechanism, so I am guessing it should be possible to run the same process on two different containers.
```
mkdir C:\wsl\exports
wsl --export Ubuntu-22.04 C:\wsl\exports\Ubuntu-22.04.tar
mkdir C:\wsl\instances\Ubuntu-22.04-v2
wsl --import Ubuntu-22.04-v2 C:\wsl\instances\Ubuntu-22.04-v2 C:\wsl\exports\Ubuntu-22.04.tar --version 2
```
as administrator.
I expect the idea behind this workaround is quite clear.
To get a shell there, now:
```
wsl -d Ubuntu-22.04-v2
```
Now you also set it as your default WSL2 VM:
```
wsl --set-default Ubuntu-22.04-v2
```
@abbienormal I'm glad to help!
@abbienormal I don't have #Windows11, so I can't test, but that's how it works in #PowerShell on #Windows10.
BTW, there are more #Debian-based distros supported! See: https://devblogs.microsoft.com/commandline/distro-installation-added-to-wsl-install-in-windows-10-insiders-preview-build-20246/