Page 1 of 1

Registering at VBOXUSERS

Posted: Tue Apr 08, 2008 2:52 am
by confused
Hi people, I have installed Virtualbox and now need to register in the VBOXUSERS file. I have tried registering using various methods, but all to no avail. Can someone please help. Thanks.

Re: Registering at VBOXUSERS

Posted: Tue Apr 08, 2008 3:41 am
by Zwopper
Well Linux is all about choises, here are a few ways to do it, there are probably more... :wink:
What you need to do is to add yourself to the VBOXUSERS group, in KDE you do this in System settings, System administration, User settings, Chose the Group tab, Administrator mode, and then add yourself to the VBOXUSERS group.
I don't remember where to find it in Gnome, but probably under "Users and Groups" or something similar, you got to have root privileges to perform this.
Otherwise you can edit the group file by pressing "Alt + F2" and typing (in KDE):

Code: Select all

sudo kate /etc/group/
and add yourself at the line where it says "vboxusers".

In Gnome:

Code: Select all

sudo gedit /etc/group/
and add yourself at the line where it says "vboxusers".

...or by pressing "Alt F2" and typing (both KDE and Gnome) (make sure "Run in terminal" is checked):

Code: Select all

sudo usermod -a -G vboxusers "YOUR_USERNAME"
replace "YOUR_USERNAME" with your real username.

Re: Registering at VBOXUSERS

Posted: Tue Apr 08, 2008 6:25 am
by MagnusB
If you want to use Alt+F2 to start a text editor/apps as root you have to use

Code: Select all

kdesu
in KDE or

Code: Select all

gksu
in GNOME..
Sudo only works in a shell, IIRC