Categories: Development

Manage, add and delete users on Ubuntu

An important part in Linux server management, creating and deleting users. Despite being simple these commands form the basis of administration alongside permissions.

Add a user

Creating new users can only be done with root assigned privileges, create a new user with

adduser theusername

You will be prompted to enter a new password along with other details in which these can be skipped.

At the end you will be prompted with the details, if they are correct press y to confirm the new user.

Delete a user

Deleting or removing a user is done with

deluser theusername

To delete a user and remove their home directory use:

deluser --remove-home theusername

Change username

To change a users username:

usermod -l newusername oldusername

Change password

Changing a users password is done with:

sudo passwd theusername

List all users

List all the users with:

compgen -u

 

Share

Recent Posts

Kennington reservoir drained drone images

A drained and empty Kennington reservoir images from a drone in early July 2024. The…

2 years ago

Merrimu Reservoir drone images

Merrimu Reservoir from drone. Click images to view larger.

2 years ago

FTP getting array of file details such as size using PHP

Using FTP and PHP to get an array of file details such as size and…

2 years ago

Creating Laravel form requests

Creating and using Laravel form requests to create cleaner code, separation and reusability for your…

2 years ago

Improving the default Laravel login and register views

Improving the default Laravel login and register views in such a simple manner but making…

3 years ago

Laravel validation for checking if value exists in the database

Laravel validation for checking if a field value exists in the database. The validation rule…

3 years ago