feat: add gnu-linux-create-user setup

This commit is contained in:
dancingCycle 2022-07-14 12:22:50 +02:00
parent 83670df4c4
commit f0a1cf5caf
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,13 @@
# Create User
* create user <usr> with default home folder\
```
sudo useradd -m <usr>
```
* create password\
```
sudo passwd username
```
* add user <usr> to sudo group\
```
sudo usermod -a -G sudo <usr>

View File

@ -0,0 +1,5 @@
/*
* SPDX-FileCopyrightText: 2022 Software Ingenieur Begerad <swingbe.de>
*
* SPDX-License-Identifier: CC0-1.0
*/