sudo lsusb
unable to initialize libusb: -99
我应该怎么做才能在bash上启用USB访问?
好消息,现在可以在Windows 10上通过drvfs挂载USB介质(包括FAT格式)和网络共享:
挂载可移动媒体:(例如D :)
$ sudo mkdir /mnt/d $ sudo mount -t drvfs D: /mnt/d
安全卸载
$ sudo umount /mnt/d
您也可以不使用smbfs挂载网络共享:
$ sudo mount -t drvfs '\\server\share' /mnt/share
您至少需要Build 16176,因此您可能必须选择加入Windows Insider程序,然后更新Windows。来源:https : //blogs.msdn.microsoft.com/wsl/2017/04/18/file-system-improvements-to-the- windows-subsystem-for- linux/