DEV Community

Cover image for Adding users to the sudo group
Roberto Preste
Roberto Preste

Posted on • Originally published at Medium on

Adding users to the sudo group

One of the most important things to do after setting up a new Linux server (or after taking over an existing one) is to create a new user, possibly with sudo powers. Sudo is a special Linux command that allows users to perform administrator tasks even if they are not system admins.

The main reason for having a sudo user (or sudoer) is because logging in as root is usually not desirable, since it can cause troubles more often than not, but we may still want to be able to perform administrator tasks with a non-root user. Moreover, adding one or more users to the sudo group can avoid the need of spreading root credentials, because a sudo command will require the user’s own password, not the root’s one.

All the members of the sudo group and their restrictions and permissions are in the /etc/sudoers configuration file. Explaining this file and in general the sudo usage is quite an extensive topic, so we will only cover the case where we want to create a new user (or we already have it) and add it to the sudoers.

Creating a new user

If you already have a fully functioning non-root user and you just want to give it sudo privileges, you can skip to the next section.

First of all, we may want to create a new user, that we will later add to the sudoers. In order to do this, we can use the following command in the terminal:

adduser <username>
Enter fullscreen mode Exit fullscreen mode

A new user called <username> will be created, together with his own home folder, usually located in /home/<username>/. This new user will of course require a password, that we will need to type twice; the password will not be visible for security reasons.

The command will also prompt us for some basic information about the new user, such as name, telephone number, etc. It is possible to leave this fields blank, though it is recommended to at least fill in the name field.

Adding a user to the sudo group

It is possible to add a user to the sudo group without having to mess around with the /etc/sudoers file. This can be accomplished using the following command:

usermod -aG sudo <username>
Enter fullscreen mode Exit fullscreen mode

This command will add the user <username> to the sudo group, and that’s it.

From now on, the <username> user will be able to access administrator privileges just by prepending sudo to any command, and providing his own password.

Top comments (2)

Collapse
 
ayb profile image
Alexander Yankovskiy-Betcher

I'd say that this article is far from complete, because having full sudo rights are ok only if you're the only user of the server. But if you have to give access for developers to make them able to interact with Postgres, you have to give them limited sudo rights and this is the thing that could make this topic useful.

Collapse
 
robertopreste profile image
Roberto Preste

Thanks for the suggestion!

This post, as some of my other posts, was actually written a couple of years ago, so it obviously could use some updates and further extension.

I will work on that asap.