Sometimes you want to mount an USB-Stick in WSL. How to do this?
It’s very easy to do with this simple commands:

$ sudo mkdir /mnt/d
$ sudo mount -t drvfs D: /mnt/d

You have to adjust the Drive-Letter of your USB-Stick ( in this sample its D: ).

Have fun and an nice day 🙂

Tom