1. List, Add and Remove a User
List all users:
|
|
Add a new user:
|
|
Remove an existing user:
|
|
2. Change the Password of a User
|
|
3. Superuser
Grant write permission to /etc/sudoers
:
|
|
There are four ways to make a user a superuser:
- Add
<username> ALL=(ALL:ALL) ALL
to the end of the file/etc/sudoers
. This allows the user to execute any command with prefixsudo
after entering the password. - Add
<username> ALL=(ALL:ALL) NOPASSWD: ALL
to the end of the file/etc/sudoers
. This allows the user to execute any command with prefixsudo
without entering the password. - Add
%<groupname> ALL=(ALL:ALL) ALL
to the end of the file/etc/sudoers
. This allows all users in the group to execute any command with prefixsudo
after entering the password. - Add
%<groupname> ALL=(ALL:ALL) NOPASSWD: ALL
to the end of the file/etc/sudoers
. This allows all users in the group to execute any command with prefixsudo
without entering the password.
Return the file /etc/sudoers
to read-only mode:
|
|
4. User Groups
List all user groups:
|
|
List the groups a user is in:
|
|
Create a new group:
|
|
Add a user to a group:
|
|
5. Onwership and Permission of Files and Directories
To check the owership and the permission of a file or directory:
|
|
Output example:
|
|
To break down drwxr-xr-x
:
|
|
To change the ownership:
|
|
To change the permission using numeric mode:
|
|
Where:
7=0b100+0b010+0b001
, owner can Read Write Execute.6=0b100+0b010+0b000
, group can Read Write.4=0b100+0b000+0b000
, other can Read.
To change the permission using symbolic mode:
|
|