
Hannah Stryker / How-To Geek
To create a new user named “maxn” in Ubuntu, use the command “sudo adduser maxn”. To delete the user and their home directory, you want the “deluser –remove-home maxn” command. You can also add them to groups (usermod), reset their passwords (passwd), or give them sudo privileges (visudo).
The system administrator role includes creating users, deleting users, and reviewing existing users. They also control who can, and cannot, use root‘s elevated powers. Here’s how to do that on Ubuntu Linux.
What to Know About Managing Users in Ubuntu
Multi-user systems require a distinct user account for each person who uses the computer. Each users has their own password, and their own private area for data. Normal users cannot access another user’s data. The root user can access anything, of course.
It’s the root user who manages user accounts. They must create an account when a new user needs to use the computer, and they delete old accounts when they’re no longer required.
Apart from creation and deletion, other changes may be required during the lifetime of the account. The user may forget…
Read Full Article Source