From 382654188c716f1143ca8b06088a83b42190b405 Mon Sep 17 00:00:00 2001 From: wh1te909 Date: Mon, 29 Mar 2021 22:02:30 +0000 Subject: [PATCH] update install docs --- docs/docs/install_server.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/docs/install_server.md b/docs/docs/install_server.md index 303eaa24..c600900b 100644 --- a/docs/docs/install_server.md +++ b/docs/docs/install_server.md @@ -22,12 +22,20 @@ apt install -y wget curl sudo apt -y upgrade ``` If a new kernel is installed, then reboot the server with the `reboot` command

-Create a linux user to run the rmm and add it to the sudoers group.
For this example we'll be using a user named `tactical` but feel free to create whatever name you want. +Create a linux user named `tactical` to run the rmm and add it to the sudoers group.
+ +**For Ubuntu**: ```bash adduser tactical usermod -a -G sudo tactical ``` +**For Debian**: +```bash +useradd -m -s /bin/bash tactical +usermod -a -G sudo tactical +``` + !!!tip [Enable passwordless sudo to make your life easier](https://linuxconfig.org/configure-sudo-without-password-on-ubuntu-20-04-focal-fossa-linux)