Virtualbox: Difference between revisions

From Halfface
Jump to navigation Jump to search
(New page: ==fix mount usb== On Fedora 7 usbfs is mounted in /etc/rc.d/rc.sysinit as mount -n -t usbfs /proc/bus/usb /proc/bus/usb vboxusers can thus not use usb; all usb devices will be shown greye...)
 
No edit summary
Line 5: Line 5:
The following command gives vboxusers access access to use usb in clients.
The following command gives vboxusers access access to use usb in clients.
  mount -t usbfs -o remount,devgid=$(awk -F: '/^vboxusers:/{print $3}' /etc/group),devmode=664  /proc/bus/usb /proc/bus/usb
  mount -t usbfs -o remount,devgid=$(awk -F: '/^vboxusers:/{print $3}' /etc/group),devmode=664  /proc/bus/usb /proc/bus/usb
[[Category:Applications]]
[[Category:Vitualization]]

Revision as of 14:22, 20 October 2008

fix mount usb

On Fedora 7 usbfs is mounted in /etc/rc.d/rc.sysinit as

mount -n -t usbfs /proc/bus/usb /proc/bus/usb

vboxusers can thus not use usb; all usb devices will be shown greyed out. The following command gives vboxusers access access to use usb in clients.

mount -t usbfs -o remount,devgid=$(awk -F: '/^vboxusers:/{print $3}' /etc/group),devmode=664  /proc/bus/usb /proc/bus/usb