Moved Content

This commit is contained in:
Bobban
2022-11-01 23:44:04 +01:00
parent e92cc75242
commit 080bea42f0
24 changed files with 366 additions and 0 deletions

20
Linux/User Management.md Normal file
View File

@@ -0,0 +1,20 @@
# User Managment
To create, modify and delete user accounts require sudo privilages.
## Create users
``` Bash
Sudo adduser [username]
```
## Change password
``` bash
Sudo passwd [username]
```
## Add user to group
``` Bash
sudo usermod -aG [group] [username]
```