<p>Good news, it is now possible to mount USB media (including formatted as FAT) and network shares with drvfs on Windows 10:</p>
<p>Mount removable media: (e.g. D🙂</p>
<pre><code class="lang-auto">$ sudo mkdir /mnt/d
$ sudo mount -t drvfs D: /mnt/d
</code></pre>
<p>To safely unmount</p>
<pre><code class="lang-auto">$ sudo umount /mnt/d
</code></pre>
<p>Vous pouvez aussi mount network shares without smbfs:</p>
<pre><code class="lang-auto">$ sudo mount -t drvfs '\server\share' /mnt/share
</code></pre>
<p>You need au moins Build 16176 so you might have to opt-in to the Windows Insider programm and then update Windows. Source: <a href="https://blogs.msdn.microsoft.com/wsl/2017/04/18/file-system-improvements-to-the-windows-subsystem-for-linux/" class="inline-onebox">File System Improvements to the Windows Subsystem for Linux | Microsoft Learn</a></p>