Adding user to wheel

Probably a stupid question but I just can't get this to work even after a few google search.

I want to give a user root privileges by adding him to the "wheel" group in /etc/group.
Code:
wheel:*:0:root,myuser
For some unknown reason, the user can't edit/modify anything (always get permission denied). What am I doing wrong?

Thanks
Jay

P.S.: Running FreeBSD 9.0
 
Adding someone to wheel does not mean root privileges. This is just a group (that is the owner group of lots of files and directories).
It still depends on the permissions of the file in question if a member of wheel can open it or not.
Example:
My user is member of wheel but is not able to open a file with owner root:wheel and permissions 700.

An advantage of wheel is that its members may su to root.
 
Back
Top