I’ve installed VirtualBox 3.0.12 on my Lenovo 3000 N100 running a new installation of openSuse 11.1. I’ve built an XP VM and upgraded it to SP3. Can’t get my USB flash drive to be mounted on the guest OS. (Installed using: VirtualBox-3.0.12_54655_openSUSE111-1.x86_64.rpm)
I’ve tried all the solutions suggested here and nothing seems to work. This was my experience:
-followed the steps in post#1. This didn't work: when I re-insert the USB flash drive after starting the guest OS (XP), it's still mounted by the host (11.1) and shows "not available" in the guest.
-re post #5 (rules.d): I have only 10-vboxdrv.rules, no second vbox rules entry.
-re post #9:tried following the steps with no luck: when I re-insert the USB flash drive after starting the guest OS, the host (11.1) captures it.
-per post#10, tried:
linux-oe0e:~ # mount -a
linux-oe0e:~ # mount
/dev/sda6 on / type ext3 (rw,acl,user_xattr)
/proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
debugfs on /sys/kernel/debug type debugfs (rw)
udev on /dev type tmpfs (rw
devpts on /dev/pts type devpts (rw,mode=0620,gid=5)
/dev/sda7 on /home type ext3 (rw,acl,user_xattr)
fusectl on /sys/fs/fuse/connections type fusectl (rw)
securityfs on /sys/kernel/security type securityfs (rw)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
gvfs-fuse-daemon on /home/eric/.gvfs type fuse.gvfs-fuse-daemon (rw,nosuid,nodev,user=eric)
/sys/bus/usb/drivers on /proc/bus/usb type usbfs (rw,devgid=1000,devmode=664)
This resulted in ff error message when I started VirtualBox:
You seem to have the USBFS filesystem mounted at /sys/bus/usb/drivers. We strongly recommend that you change this, as it is a severe mis-configuration of your system which could cause USB devices to fail in unexpected ways.
This is what my fstab looks like:
/dev/disk/by-id/ata-TOSHIBA_MK8034GSX_X6OFT2AQT-part5 swap swap defaults 0 0
/dev/disk/by-id/ata-TOSHIBA_MK8034GSX_X6OFT2AQT-part6 / ext3 acl,user_xattr 1 1
/dev/disk/by-id/ata-TOSHIBA_MK8034GSX_X6OFT2AQT-part7 /home ext3 acl,user_xattr 1 2
proc /proc proc defaults 0 0
sysfs /sys sysfs noauto 0 0
debugfs /sys/kernel/debug debugfs noauto 0 0
#usbfs /proc/bus/usb usbfs noauto 0 0
devpts /dev/pts devpts mode=0620,gid=5 0 0
/sys/bus/usb/drivers /proc/bus/usb usbfs devgid=1000,devmode=664 0 0
I would like to see the ff clarified in this how-to:
-
When people refer to a “clean install” of VirtualBox, does that mean I have to rebuild my whole guest OS (2 days’ work with all the updates) as well, or can I export that and re-import it when I’ve re-installed VirtualBox?
-
Why does the recommended usbfs line in the fstab lead to the noted error message?