Difference between revisions of "Administrative Account"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
The following instruction steps are inspired by the article<ref>https://www.cyberciti.biz/faq/add-new-user-account-with-admin-access-on-linux/</ref>: | The following instruction steps are inspired by the article<ref>https://www.cyberciti.biz/faq/add-new-user-account-with-admin-access-on-linux/</ref>: | ||
=Command Line Operations= | |||
To add a new user account with administrator access, one must follow these steps: | To add a new user account with administrator access, one must follow these steps: | ||
Revision as of 00:16, 9 July 2021
The following instruction steps are inspired by the article[1]:
Command Line Operations
To add a new user account with administrator access, one must follow these steps:
- Log in to the system with root access, using a terminal applications.
- Create a new user name, say
xlp
, by using theadduser
command:
adduser xlp
- Make the user xlp, possess
admin
rights.
usermod -aG sudo xlp
- Verify its rights using
id xlp
- Log in as
xlp
, by key in the following command
su - xlp
- Then run some
sudo
command
sudo ls -l /etc/
If the the above worked, you have created an administrative account with user name:id xlp
.