misc notes
This commit is contained in:
parent
532370a7c2
commit
92ec404464
3 changed files with 23 additions and 1 deletions
|
@ -17,4 +17,6 @@ tags:
|
||||||
|
|
||||||
## setup notes
|
## setup notes
|
||||||
|
|
||||||
Coming soon.
|
==this is a work in progress==
|
||||||
|
|
||||||
|
1. Set up a [new user account](c4e96daf.md)
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
# software
|
# software
|
||||||
|
|
||||||
- [[[92598822]]]
|
- [[[92598822]]]
|
||||||
|
- [[[c4e96daf]]]
|
||||||
|
|
19
c4e96daf.md
Normal file
19
c4e96daf.md
Normal 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
|
||||||
|
```
|
||||||
|
|
Loading…
Add table
Reference in a new issue