Windows 10上的Ubuntu上的Bash支持USB吗?
- 我在dev /上没有关于usb的文件或路径
- 当我插入闪存盘时,dev /或mnt /或media /上没有任何内容。
sudo lsusb
返回:unable to initialize libusb: -99
我应该怎么做才能在bash上启用USB访问?
回答:
好消息,现在可以在Windows 10" title="Windows 10">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/
以上是 Windows 10上的Ubuntu上的Bash支持USB吗? 的全部内容, 来源链接: utcz.com/qa/422477.html