From 92ec4044649f7673a9fd28ae35292fcf1797baab Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Sun, 13 Dec 2020 21:25:54 -0700 Subject: [PATCH] misc notes --- 041a1acc.md | 4 +++- 9b74f625.md | 1 + c4e96daf.md | 19 +++++++++++++++++++ 3 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 c4e96daf.md diff --git a/041a1acc.md b/041a1acc.md index d36afb3..f00d26e 100644 --- a/041a1acc.md +++ b/041a1acc.md @@ -17,4 +17,6 @@ tags: ## setup notes -Coming soon. +==this is a work in progress== + +1. Set up a [new user account](c4e96daf.md) diff --git a/9b74f625.md b/9b74f625.md index 1dc5a5d..53ea34e 100644 --- a/9b74f625.md +++ b/9b74f625.md @@ -1,3 +1,4 @@ # software - [[[92598822]]] +- [[[c4e96daf]]] diff --git a/c4e96daf.md b/c4e96daf.md new file mode 100644 index 0000000..94dd10c --- /dev/null +++ b/c4e96daf.md @@ -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 +``` +