The feature lets users access Linux file systems, such as ext4, that Windows donโt natively support. It also means those dual-booting Windows and Linux with different disks can now access Linux files from Windows.
Starting with Windows build 20211, Windows Subsystem for Linux 2 (WSL 2) will be offering a new feature: wsl --mount
. This new parameter allows a physical disk to be attached and mounted inside WSL 2, enabling you to access filesystems that arenโt natively supported by Windows (such as ext4).
Related: How to Use showmount Command to List Shares on an NFS Server
So, if youโre dual-booting with Windows & Linux using different disks, you can now access your Linux filesystem in WSL 2.
However, the feature comes with limitations. For instance, it’s impossible to attach a single partition or mount ext4 partitions on the same physical disk as Windows OS.
This is because the new improvement is only limited to separate physical disks. Also, you cannot attach USB flash drives even though it supports USB disks.
How to Mount a Linux Disk in WSL 2
To mount a disk, open a PowerShell window with administrator privileges and run:
wsl --mount <DiskPath>
Code language: HTML, XML (xml)
Listing the available disks in Windows is easy. Just run:
wmic diskdrive list brief
Code language: PHP (php)
To unmount and detach the disk from WSL 2, run:
wsl --unmount <Diskpath>
Code language: HTML, XML (xml)
The disks paths are available under the DeviceID
columns, usually under the \\.\PHYSICALDRIVE*
format.
Below is an example of mounting a specific hard disk partition into WSL and browsing its files.
Accessing Linux Filesystem with File Explorer
Once mounted, itโs also possible to access these disks through Windows Explorer by navigating to \wsl$
and then to the mount folder.
Bottom Line
If you want to access a Linux filesystem in WSL 2, first update your Windows to the latest Build 20211 and then check out the official docs.