zettel/c4e96daf.md
2020-12-13 21:25:54 -07:00

19 lines
331 B
Markdown

---
date: 2020-12-13T16:43
tags:
- server
- admin
- tech
---
# adding a new user account on a linux system
```bash
adduser $USER
usermod -aG sudo $USER
# if account requires password-less elevation:
sudo visudo # add an entry like: $USER ALL=(ALL) NOPASSWD:ALL
# confirm that the account works as expected
su - $USER
```