I've tried this solution mentioned in VB manual:
QUOTE
11.4.6 USB not working
If USB is not working on your Linux host, make sure that the current user has permission
to access the USB filesystem (usbfs), which VirtualBox relies on to retrieve valid
information about your host’s USB devices.
As usbfs is a virtual filesystem, a chmod on /proc/bus/usb has no effect. The
permissions for usbfs can therefore only be changed by editing the /etc/fstab file.
For example, most Linux distributions have a user group called usb or similar, of
which the current user must be a member. To give all users of that group access to
usbfs, make sure the following line is present:
# 85 is the USB group
none /proc/bus/usb usbfs devgid=85,devmode=664 0 0
Replace 85 with the group ID that matches your system (search /etc/group for “usb”
or similar). Alternatively, if you don’t mind the security hole, give all users access to
USB by changing “664” to “666”.
If USB is not working on your Linux host, make sure that the current user has permission
to access the USB filesystem (usbfs), which VirtualBox relies on to retrieve valid
information about your host’s USB devices.
As usbfs is a virtual filesystem, a chmod on /proc/bus/usb has no effect. The
permissions for usbfs can therefore only be changed by editing the /etc/fstab file.
For example, most Linux distributions have a user group called usb or similar, of
which the current user must be a member. To give all users of that group access to
usbfs, make sure the following line is present:
# 85 is the USB group
none /proc/bus/usb usbfs devgid=85,devmode=664 0 0
Replace 85 with the group ID that matches your system (search /etc/group for “usb”
or similar). Alternatively, if you don’t mind the security hole, give all users access to
USB by changing “664” to “666”.
So according to that, I've added this into /etc/fstab
CODE
# 43 is the USB group
# devmode=664 default; =666 for all
none /proc/bus/usb usbfs devgid=43,devmode=666 0 0
# devmode=664 default; =666 for all
none /proc/bus/usb usbfs devgid=43,devmode=666 0 0
But no help.
Does anyone know if USB even works with WinXP guest on Virtualbox on Mandriva host?
