How to get VirtualBox 3.0 installed with USB support on Fedora 11.

We need to install a little something to get the module to actually build before we install Virtualbox.

As root:

# yum install dkms kernel-devel make automake autoconf gcc

Then install VirtualBox:

32bit:

# rpm -Uhv http://download.virtualbox.org/virtualbox/3.0.0/VirtualBox-3.0.0_49315_fedora11-1.i586.rpm

64bit

# rpm -Uhv http://download.virtualbox.org/virtualbox/3.0.0/VirtualBox-3.0.0_49315_fedora11-1.x86_64.rpm

Right, now for the usb part. Got to find out the Group ID for vboxusers now. Go to Administration -> Users and Groups.

Remember the Group ID of vboxusers

Remember the Group ID of vboxusers

Select the vboxusers group and press properties, add yourself to this group.

Add yourself to this group

Add yourself to this group

Now we just have to add this little line to /etc/fstab

none /sys/bus/usb/drivers usbfs devgid=501,devmode=664 0 0

note that 501 was the Group ID for vboxusers, which you are a member of, this grants you usb inside VirtualBox.

Now, reboot and try out your virtual boxes!

Thanks to readysleep for the fstab info!