Virtualbox 訪問 USB 子系統 失敗的解決方法

elevenxl發表於2008-03-03
 Virtualbox 訪問 USB 子系統 失敗的解決方法

錯誤顯示如下:

Could 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}

原因是由於當前帳戶無法識別USB裝置,雖然在UBUNTU下是好的,解決方法:

1.增加使用者組usbfs

$ sudo groupadd usbfs

2. 檢視usbfs使用者組的gid

$ cat /etc/group | grep usbfs

usbfs:x:1002:

把當前使用者增加到usbfs組

$ sudo gedit /etc/group



usbfs:x:1002:

修改為

usbfs:x:1002:zhouyun(這裡改成你的帳戶名)

4. 為USB裝置重新設定許可權編輯/etc/fstab檔案,新增下面兩行,注意你的gid可能不是1002

$ sudo gedit /etc/fstab

在末尾加上

# 1002 is the USB group IDI

none /proc/bus/usb usbfs devgid=1002,devmode=664 0 0

重新啟動後,就可以在客戶機中使用USB裝置了。


注:以上內容來自網路,本人不承擔任何連帶責任
文章轉自:http://hi.baidu.com/sevk/blog/item/f261398766cf3b2ec75cc352.html

相關文章