Granting root-level privileges to a user in a Linux system is a powerful and dangerous task. It’s essential when managing servers, automation, or giving sysadmins full control — but it must be done correctly and securely to avoid exposing your system to vulnerabilities or irreversible mistakes.
In this article, we’ll explore how to add a user to the root group, grant root privileges, and cover best practices and security implications.
In Linux, root is the superuser with unrestricted access. However, regular users should never operate directly as root. Instead, privileges can be delegated using:
You’ll be prompted to set a password and optional metadata for the user alice.
On Debian/Ubuntu-based systems, the sudo group is used:
On RHEL/CentOS/Fedora, use the wheel group:
🔎 wheel is a traditional Unix group used for administrative access.
If you really want to add the user directly to the root group (not recommended):
❗ This may break security boundaries, especially if your PAM or SSH config treats root differently.
Expected output:
To explicitly grant privileges via sudo:
🔐 You can restrict commands or add a password requirement if needed:
Log in or switch to the user:
Test root access:
Expected output:
In /etc/sudoers or /etc/sudoers.d/alice:
This allows the user to restart Nginx only — a safer approach.
Problem | Solution |
---|---|
User still can’t run sudo | Log out and log back in (or restart session) |
“User not in sudoers file” | Check /etc/sudoers syntax via visudo |
SSH doesn’t allow login | Check /etc/ssh/sshd_config for AllowGroups |
If you need to revoke sudo or root privileges from a user, you can remove them from the respective group with the following command:
sudo deluser username sudo
Replace username with the user’s name. This command removes the user from the sudo group, revoking their ability to execute commands as a superuser.
sudo deluser username root
Adding a user to the root group or granting root privileges in Linux is simple in execution, but complex in impact. For long-term security and stability:
🛡️ Remember: With great power comes great responsibility — especially on a production server.