All corrections
Wikipedia March 13, 2026 at 10:45 PM

en.wikipedia.org/wiki/Sudo

1 correction found

1
Claim
Users must be in a certain group to use the sudo command, typically either the wheel or sudo group.
Correction

This is too absolute: sudo access does not require membership in a special group. The sudo policy can authorize individual users directly, or groups, via the sudoers policy.

Full reasoning

Official sudo documentation says sudo lets administrators delegate authority to certain users (or groups of users), not only members of a special group. The sudoers manual likewise says the /etc/sudoers policy is made of user specifications and that User_List entries may be individual user names as well as %group entries.

So while many Linux distributions commonly use a sudo or wheel group as a convenience, it is incorrect to say users must be in such a group to use sudo. A user can be granted sudo privileges directly in sudoers without belonging to either group.

2 sources
  • Sudo

    Sudo (su "do") allows a system administrator to delegate authority to give certain users (or groups of users) the ability to run some (or all) commands as root or another user...

  • Sudoers Manual | Sudo

    The sudoers file is composed of two types of entries: aliases ... and user specifications (which specify who may run what) ... User ::= ... user name | ... %group ...

Model: OPENAI_GPT_5 Prompt: v1.16.0