Solution to virtualbox access to USB subsystem failure
The error is shown as follows:
Cocould not load the host USB proxy service (verr_file_not_found). The service might be not installed on the host computer.
Result code:
0 × 80004005
Component:
Host
Interface:
Ihost {81729c26-1aec-46f5-b7c0-cc7364738fdb}
Callee:
Imachine {31f7169f-14da-4c55-8cb6-a3665186e35e}
The reason is that the current account cannot identify the USB device. Although it is good in Ubuntu, the solution is as follows:
1. added the user group usbfs.
$ Sudo groupadd usbfs
2. view the GID of the usb fs User Group
$ CAT/etc/group | grep usbfs
Usb fs: X: 1002:
Add the current user to the usb fs group
$ Sudo gedit/etc/group
Set
Usb fs: X: 1002:
Change
Usbfs: X: 1002: zhouyun (change to your account name here)
4. Reset the permission for the USB device to edit the/etc/fstab file and add the following two lines. Note that your GID may not be 1002
$ Sudo gedit/etc/fstab
Add
#1002 is the USB group Idi
None/proc/bus/USB usbfs devgid = 1002, devmode = 664 0 0
After restarting, you can use the USB device in the client.
Note: The above content comes from the Internet and I am not liable for any joint liability.
ArticleFrom: http://hi.baidu.com/sevk/blog/item/f261398766cf3b2ec75cc352.html