Host: ScientificLinux 5.5
Guest: WinXP SP2
Check this thread:
http://forums.virtualbox.org/viewtopic.php?f=7&t=19955
I have changed the code
Code: Select all
if [ ! -d /proc/bus/usb ]; then
modprobe usbcore >/dev/null 2>&1 && mount -n -t usbfs /proc/bus/usb /proc/bus/usb
else
mount -n -t usbfs /proc/bus/usb /proc/bus/usb
fi
from the thread to the following one:
Code: Select all
if [ ! -d /proc/bus/usb ]; then
modprobe usbcore >/dev/null 2>&1 && mount -n -t usbfs /proc/bus/usb /proc/bus/usb -o devgid=502,devmode=664
else
mount -n -t usbfs /proc/bus/usb /proc/bus/usb -o devgid=502,devmode=664
fi
(my VBox GID is 502).
But there is something yet to correct. Not all the time the new USB (pen)drive's icon shows in Total Commander's disk-bar. The "Safety removal" icon is present is system tray and I can remove the USB device but I am not able to use it without rebooting - either VBox or SciLinux - I don't know yet. I have to check it more thoroughly. But USB "half" works.
***********************************************
The next day....
PROBLEM SOLVED!
I'm not casual Windows user so I made an error. I mapped shared folder to E, thinking that Windows automa{t|g}ically would select next letters for its new devices. No way!

USB1 was given E, USB2 F, etc. So, I changed the shared folder letter from E to Z, and all USB devices - I tested pendrive, MP3, and cheap camera - were assigned E, F.. letters and were visible to Total Commander and my Windows system in VBox.
Regards