An important part in Linux server management, creating and deleting users. Despite being simple these commands form the basis of administration alongside permissions.
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.
Deleting or removing a user is done with
deluser theusername
To delete a user and remove their home directory use:
deluser --remove-home theusername
To change a users username:
usermod -l newusername oldusername
Changing a users password is done with:
sudo passwd theusername
List all the users with:
compgen -u
A drained and empty Kennington reservoir images from a drone in early July 2024. The…
Merrimu Reservoir from drone. Click images to view larger.
Using FTP and PHP to get an array of file details such as size and…
Creating and using Laravel form requests to create cleaner code, separation and reusability for your…
Improving the default Laravel login and register views in such a simple manner but making…
Laravel validation for checking if a field value exists in the database. The validation rule…