update install docs

This commit is contained in:
wh1te909 2021-03-29 22:02:30 +00:00
parent fa1df082b7
commit 382654188c
1 changed files with 9 additions and 1 deletions

View File

@ -22,12 +22,20 @@ apt install -y wget curl sudo
apt -y upgrade apt -y upgrade
``` ```
If a new kernel is installed, then reboot the server with the `reboot` command<br/><br/> If a new kernel is installed, then reboot the server with the `reboot` command<br/><br/>
Create a linux user to run the rmm and add it to the sudoers group.<br/>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.<br/>
**For Ubuntu**:
```bash ```bash
adduser tactical adduser tactical
usermod -a -G sudo tactical usermod -a -G sudo tactical
``` ```
**For Debian**:
```bash
useradd -m -s /bin/bash tactical
usermod -a -G sudo tactical
```
!!!tip !!!tip
[Enable passwordless sudo to make your life easier](https://linuxconfig.org/configure-sudo-without-password-on-ubuntu-20-04-focal-fossa-linux) [Enable passwordless sudo to make your life easier](https://linuxconfig.org/configure-sudo-without-password-on-ubuntu-20-04-focal-fossa-linux)