Showing posts with label Ports. Show all posts
Showing posts with label Ports. Show all posts

Wednesday, December 3, 2008

Enable VirtualBox USB Support In Ubuntu 8.10 Ibex

I just got around to installing VirtualBox in my newly installed Ibex system.
Finished the install and noticed a warning message that there were no USB ports present or supported.

I know from past experience that to have USB access in VirtualBox that you need the PUEL version from their website and not the OSE version from the repositories.

So I do some searching and found some info that fixed the USB problem and is a very easy fix. It should work for all Ibex users and hopefully this problem will be fixed in future versions.

First make sure you have added your user to the list of VirtualBox users group. To do this just copy and paste the following into your terminal;

$ sudo gpasswd -a YOURUSERNAME vboxusers

Where YOURUSERNAME is your user name.

Now let's add some USB support to VirtualBox. Open the fstab file so you can edit it. Since it needs root permissions we can do it through the terminal with this command;

sudo gedit /etc/fstab

Now that the fstab file is open add the following command to the bottom of the fstab file;

none /proc/bus/usb usbfs devgid=46,devmode=664 0 0

Close the file making sure to save it.
Now reboot your computer and when you open VirtualBox you will have USB support.

Simple enough?

Enjoy!

TaZMAn