PDA

View Full Version : [SOLVED] VirtualBox


rchokler
February 4th, 2008, 09:12 AM
I'm trying to install virtual xp on virtual machine but i have small problem
can you help me please ?

Dekunuts
February 4th, 2008, 09:16 AM
you have to go into user / group administration in the system menu and add yourself to the vbox group if i remember correctly.

ichbinesderelch
February 4th, 2008, 09:17 AM
as the messages states you just have to add your user to vboxusers grp, you could easily do this with gpasswd -a USERNAME vboxusers, after that you have to login again to apply changes! (EDIT)

p_quarles
February 4th, 2008, 09:24 AM
Moved to Virtualization forum.

The exact name of the group you need to add your user to is "vboxuser."

rchokler
February 4th, 2008, 09:33 AM
I'm very new with Ubuntu ,my apologizing for some silly questions
i tried to do you suggestion but

alon@alon-laptop:~$ gpasswd -a alon vboxusers
gpasswd: Permission denied.

p_quarles
February 4th, 2008, 09:34 AM
Try this instead:
sudo adduser alon vboxusers
Log out, then back in for the change to take effect.

rchokler
February 4th, 2008, 09:41 AM
Great work, thak you very much
can you explain me what was i doing :)
and what is the different between those two sentence you wrote ?

ichbinesderelch
February 4th, 2008, 09:46 AM
the only difference was that you executed the command with superuser rights (kinda as root), you don't have permission to edit users to group as normal user

p_quarles
February 4th, 2008, 09:50 AM
Great work, thak you very much
can you explain me what was i doing :)
and what is the different between those two sentence you wrote ?
Sure. The command I gave you goes like this:
sudo = run command as root
adduser = just what it sounds like ;)
alon = name of user to modify
vboxusers = name of group to add user alon to