|
|
F8下的VirtualBox中的XP无法使用USB设备。该设备能在F8中正常使用,在VirtualBox中的USB设备设置页面中也能看到并对其设置相应筛选项,但就是不能使用。
文档中提示要通过把当前用户加入“USBuser”或者类似的组的方法,以取得读写USB设备的权限,而我在F8中没有找到这组。这里我有一个疑问:即使我不在这个组中,我不是也能够正常使用USB设备吗?搞不懂……
我该如何做呢?谢谢!
按FedoraForum的VirtualBox USB permmission解决:
1 - create a new group called "usb";
新建usb组
2 - locate file usbfs: in my case is /sys/bus/usb/drivers (I suggest to find the file with a usb device inserted;
定位usbfs.最好挿入usb设备后再查找
3 - modify file /etc/fstab inserting a line containing the right path and the number corresponding the "usb" group :
修改/etc/fstab,503是usb组ID
none /sys/bus/usb/drivers usbfs devgid=503,devmode=664 0 0
4 - command mount -a;
运行 mount -a
5 - start VB and try...;
重启 VB |
|