Skip to content

Instantly share code, notes, and snippets.

@nevmerzhitsky
Last active June 16, 2024 08:08
Show Gist options
  • Save nevmerzhitsky/cd73467bf58ef9df09cd9f776acde9fa to your computer and use it in GitHub Desktop.
Save nevmerzhitsky/cd73467bf58ef9df09cd9f776acde9fa to your computer and use it in GitHub Desktop.
Move a WSL image to a different disk (and other helpful commands)
# 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
@nevmerzhitsky
Copy link
Author

The same for the Docker Desktop VM with your containers:

cd $A_TARGET_STORAGE
wsl --export docker-desktop-data .\\docker-desktop-data.tar
wsl --unregister docker-desktop-data
wsl --import docker-desktop-data .\\docker-desktop-data .\\docker-desktop-data.tar --version 2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment