I want to use my flashdrive in Windows XP, which I am currently running in Virtualbox, but when I open up the settings to enable usb usage, I get an error:
Failed to access the USB subsystem.
VirtualBox is not currently allowed to access USB devices.
You can change this by adding your user to the 'vboxusers' group.
Please see the user manual for a more detailed explanation
Result Code:
NS_ERROR_FAILURE (0x00004005)
Component:
Host
Interface:
IHost {30678943-32df-4830-b413-931b25ac86a0}
Callee:
IMachine {22781af3-1c96-4126-9edf-67a020e0e858}Does anyone know how to fix this!?
26 Answers
In your host, run this command:
sudo usermod -a -G vboxusers $USERNow perform a logout (always required after add current user to a group).
After login, check that you are in the vboxusers group with this command, make sure that vboxusers is in the shown list:
groups $USER 4 This works for me and my problem with VirtualBox was solved
sudo usermod -a -G vboxsf "$USER" 2 - Add the user as suggested by other answer using usermod command.
- Run the command
id. You should seevboxusersin the list. - If you don't see that, you may restart your computer and try
idagain.
When you get vboxusers listed as a result of running id, you're good to use USB with virtual box.
In a terminal run:
sudo adduser $USER vboxusersReboot all systems.
id <username>That will give you
uid=1000([username]) gid=1000([username]) groups=1000([username]),10(wheel),18(dialout),497(plugdev)if vboxusers is missing in that then add it
sudo usermod -a -G vboxusers [username]This should resolve the issue
Would like to mentionn for those who no solution work like me, ensure you are part of the group vboxusers, if it does not exist, addgroup vboxusers.... after, delete in the host usb settings all the usb filters (devices) you have... reboot the guest In the host, use empty filters to recreate manually your devices, put any name just copy the two following fields from the original filter still available, restart your virtual guest.... voila, your devices are there ... its the only way i found to force them out of at least ten other solutions.. Enjoy