Last active
June 16, 2024 08:08
-
-
Save nevmerzhitsky/cd73467bf58ef9df09cd9f776acde9fa to your computer and use it in GitHub Desktop.
Move a WSL image to a different disk (and other helpful commands)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Type in Git Bash or Windows CMD | |
cd $A_TARGET_STORAGE | |
# Replace "Ubuntu-20.04" with the WSL image name you want to move | |
wsl --export Ubuntu-20.04 .\\Ubuntu-20.04.tar | |
wsl --unregister Ubuntu-20.04 | |
wsl --import Ubuntu-20.04 .\\Ubuntu-20.04 .\\Ubuntu-20.04.tar --version 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The same for the Docker Desktop VM with your containers: