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)