here is the problem yes i look all over more than 5 pages and more than a week now im going to rip my fingers away if i dont get this fix.
I keep getting this i dont know what to do::confused::confused:
Could not load the Host USB Proxy Service (VERR_FILE_NOT_FOUND). The service might be not installed on the host computer.
Result Code: NS_ERROR_FAILURE (0x00004005) Component: Host Interface: IHost {489fb370-c227-4d43-9761-ceb28484fd9f}
im using the one that has USB support.
i think i need to do a terminal uninstalling but i dont know how to work terminal im new to any linux so yea im dum.
please i need a Genius thanks.
SOLUTION HERE IN THIS WEBSITE:KS:http://www.derekhildreth.com/blog/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial/
Setup USB:
USB is disabled by default, so you’ll probably want to enable it. Otherwise you’ll get an error when you go into the “Settings” of your virtual machine. To correct this, you’ll need to edit the mountdevsubfs.sh file:
[In Terminal] sudo gedit /etc/init.d/mountdevsubfs.sh
Inside, you’ll see a block of code that looks like this:
# # Magic to make /proc/bus/usb work # #mkdir -p /dev/bus/usb/.usbfs #domount usbfs “” /dev/bus/usb/.usbfs -obusmode=0700,devmode=0600,listmode=0644 #ln -s .usbfs/devices /dev/bus/usb/devices #mount –rbind /dev/bus/usb /proc/bus/usb
Change it to look like this (uncomment out the region by deleting the “#’s”):
# # Magic to make /proc/bus/usb work # mkdir -p /dev/bus/usb/.usbfs domount usbfs “” /dev/bus/usb/.usbfs -obusmode=0700,devmode=0600,listmode=0644 ln -s .usbfs/devices /dev/bus/usb/devices mount –rbind /dev/bus/usb /proc/bus/usb
Save the changes, log out, and then log back in again for the changes to take place.