misc notes

This commit is contained in:
Matthew Ryan Dillon 2020-12-13 21:25:54 -07:00
parent 532370a7c2
commit 92ec404464
3 changed files with 23 additions and 1 deletions

View file

@ -17,4 +17,6 @@ tags:
## setup notes
Coming soon.
==this is a work in progress==
1. Set up a [new user account](c4e96daf.md)

View file

@ -1,3 +1,4 @@
# software
- [[[92598822]]]
- [[[c4e96daf]]]

19
c4e96daf.md Normal file
View file

@ -0,0 +1,19 @@
---
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
```