This may sound stupid, but I wonder if there is any difference between normal and administrator user accounts (created with the Unity Control Center) except the right to use sudo
to become root.
Asked
Active
Viewed 521 times
2

Byte Commander
- 107,489
1 Answers
2
The big difference is in the amount of groups user belongs to. In addition to sudo
, admin account has access to the following
xieerqi:$ groups xieerqi
xieerqi : xieerqi adm cdrom sudo dip plugdev lpadmin sambashare
That's pretty much what that settings menu in xfce
does - adds an account to groups
By contrast , a regular user belongs only to his/her own group, unless otherwise changed by admin/root accounts.
xieerqi:$ groups tester
tester : tester
Byte Commander
- 107,489

Sergiy Kolodyazhnyy
- 105,154
- 20
- 279
- 497
lp
,adm
, etc) will influence programs that respect those groups. This will allow limited increases in a user account's power.root
starts with ALL access enabled. They aren't "privileges". They're not even "capabilities". They're just/etc/group
. – waltinator Nov 05 '15 at 18:30