How to create, edit and delete users in Linux

This manual describes how to work with Linux users through the terminal (using the command line).

Creating users in linux

Syntax:

useradd <username> [options]

Example:

useradd developer

In this example, the developer account is created.

For the account, you should immediately create a password:

passwd developer

*after entering, the system will ask you to enter the password twice.

KeyDescription and examples
-bThe base directory for new login home directories
useradd developer -b /var/home
-cIt is a short description(comment) of the login
useradd developer -c “User for deploy soft”
-dSpecifies the home directory path for the new user
useradd developer -d /home/newuser
-DAllows you to show or change the default settings that will be applied the next time you create users
useradd developer -Ds /bin/bash
-eAfter this date, no user will be able to access this login
useradd developer -e 2025-12-31
-fNumber of days after which an account with an obsolete password will be locked out
useradd developer -f 3
-gSpecifies the main group
useradd developer -g group
-GSpecifies additional groups
useradd developer -G wheel
-kSkeleton source path (new user template files)
useradd developer -k /var/skel
-mWhen creating a user, create a home directory
useradd developer -m
-MDo not create a home directory
useradd developer -M
-NDo not create a primary group with the same name as the user
useradd developer -N
-oAllows the creation of an account with a duplicate UID
useradd developer -u 15 -o
-pSets a password
useradd developer -p pass
-rSystem account (no home directory and with IDs in the range SYS_UID_MIN – SYS_UID_MAX from the /etc/login.defs file)
useradd developer r
-RDirectory for chroot
useradd developer -R /var/chroot/home
-sPath to command line shell
useradd developer -s /bin/csh
-uSets the UID
useradd developer -u 666
-UThe group name will be the same as the user
useradd developer -U
An up-to-date list of keys can be obtained with the useradd -h command.

How to edit user

Syntax:

usermod <username> [options]

Example:

usermod developer -G wheel

this command add user developer to wheel group

How to delete user

Syntax:

userdel <username> [options]

Example:

userdel developer -G wheel

How to block user

You can block a user without removing him from the system:

usermod -L <username>

Example:

usermod -L developer

To unblock a user, enter:

usermod -U <username>

How to manage group in linux

Create group:

groupadd <group> [options]

Edit group:

groupmod <group> [options]

Removing a group:

groupdel <group> [options]

Adding a user to a group:

Executed via the usermod command:

usermod -a -G <comma-separated groups> <user>

Removing from a group:

Executed with gpasswd:

gpasswd --delete <user> <comma-separated groups>

A list of users

You can view the list of users in the /etc/passwd file:

cat /etc/passwd

We will see something like:

root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:bin:/bin:/usr/sbin/nologin
sys:x:3:3:sys:/dev:/usr/sbin/nologin
sync:x:4:65534:sync:/bin:/bin/sync
games:x:5:60:games:/usr/games:/usr/sbin/nologin
man:x:6:12:man:/var/cache/man:/usr/sbin/nologin
...

As a rule, most of the user data is system – their UID is less than 1000 and more than 60000.

A more functional command for displaying the contents of the passwd file is getent:

getent passwd

You can find a user by ID:

getent passwd 1000

Get a list of non-system users:

getent passwd {1000..60000}

Get only a list of logins of non-system accounts:

getent passwd {1000..60000} | awk -F: '{ print $1}'

Leave a Reply

Your email address will not be published. Required fields are marked *