However, many users reported encountering difficulties in the use of USB ports with virtualbox (i.e > 3.0.6). There are many different tracks on the Internet, most recommend the modified /etc/fstab
but in ubuntu karmic there is a method cleaner, simpler and more appropriate:
This works well with Karmic x 64
1 - Add in /etc/udev/rules.d/z80_user.rules (which is a symlink to /etc/udev/user.rules) the 2 lines below:
SUBSYSTEM=="usb_device", GROUP="vboxusers", MODE="0666"
SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", GROUP="vboxusers", MODE="0666"
2 - Eventually, if any, remove /etc/fstab line
none /proc/bus/usb usbfs devgid = 505, devmode = 664 0 0
if it had been added manually
if nothing is touching
3 - Reboot for the consideration of udev (I think that instead of rebooting, it would be better to do instead:
udevcontrol reload_rules
in a terminal, but I have not tried it yet ...)
It's still very simple, just 2 lines to copy/paste/edit in this file is provided for this (rules user)
and does that override the rules of origin of virtualbox. Thus, there is no risk of damage by wrong fstab manip: (
udev or other ...
