How to share data between different WSL instances
1. Create shared directory which is not included in any WSL instances
mkdir /mnt/wsl/share
This will create /mnt/wsl/share
directory shared across all WSL instances. You can share data via this shared directory.
WARNING: the shared directory's filesystem lives in memory and thus a wsl.exe --shutdown
would wipe them from existence.
However, it is still impossible to directly copy/paste data between WSL instances.
2. Create shared directory included in a WSL instance
You can make existing directory in WSL instance shared across other WSL instances by using bind mount.
For example, you have two WSL instances, Ubuntu-A and Ubuntu-B.
1. Open ~/.profile
in Ubuntu-A and add below code.
# bind mount shared directory
if [ ! -d /mnt/wsl/share-a ]; then
mkdir /mnt/wsl/share-a
wsl.exe -d Ubuntu-A -u root mount --bind / /mnt/wsl/share-a/
fi
2. Open ~/.profile
in Ubuntu-B and add below code.
# bind mount shared directory
if [ ! -d /mnt/wsl/share-b ]; then
mkdir /mnt/wsl/share-b
wsl.exe -d Ubuntu-B -u root mount --bind / /mnt/wsl/share-b/
fi
This will automatically mount the root directory (/
) of Ubuntu-A to /mnt/wsl/shared-a/
and do the same thing for Ubuntu-B when you launch WSL.