Cool New Hidden Feature in Raspberry Pi Imager 1.6

CanaKit Raspberry Pi 4 (4GB) Starter Kit (Amazon Affiliate)
US: https://amzn.to/3azJgrW
UK: https://amzn.to/2JdMq9o
CA: https://amzn.to/3bwiRvY
ES: https://amzn.to/2T06LnM (similar)
FR: https://amzn.to/3cvIZrs (similaire)
IT: https://amzn.to/2Ar74Sj (simile)
DE: https://amzn.to/2AqfWHQ (ähnlich)
IN: https://amzn.to/3ey6fWj
AU: https://amzn.to/2VTUt1C
NL: https://amzn.to/3f5NdsD (vergelijkbaar)

Raspberry Pi Playlist: https://www.youtube.com/playlist?list=PLErU2HjQZ_ZPvIdR5BEqDgO7DsGAla_AZ

Accessing a Mapped Drive in Windows Subsystem for Linux

Windows 10 Playlist: https://www.youtube.com/playlist?list=PLErU2HjQZ_ZOfzuoY8JrZFG5oUR9m43xf

Move to Mount Directory
cd /mnt
Create Directory for Mounting Mapped Drive
sudo mkdir /mnt/e
Mount Mapped Drive to Directory
sudo mount -t drvfs E: /mnt/e
Unmount Drive
sudo umount /mnt/e
Remove Mount Directory
sudo rmdir /mnt/e
Automatically Mount Drive
sudo nano /etc/fstab
E: /mnt/e drvfs defaults 0 0

Control-o to save, Control-x to exit.

Load fstab
sudo mount -a