Files
weba/01_enable_user_sudo.md
2026-04-10 13:19:27 +02:00

26 lines
324 B
Markdown

# 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
```