update nach VL http/webserver

This commit is contained in:
bpetschowitsch
2026-04-10 13:19:27 +02:00
parent a0c327413b
commit 168b213166
4 changed files with 176 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
# Make User a sudoer
Instructions to add user to sudoers
## login as root
```bash
su root
```
provide roots password
## edit /etc/sudoers
```bash
vim /etc/sudoers
```
add following line:
```text
youruser ALL=(ALL:ALL) ALL
```
ensure following line is given (otherwise add it):
```text
%sudo ALL=(ALL:ALL) ALL
```