Added different addgroup/adduser commands for Debian authored by Caleb Wheeler's avatar Caleb Wheeler
...@@ -41,12 +41,21 @@ apt-get dist-upgrade ...@@ -41,12 +41,21 @@ apt-get dist-upgrade
Log into the new front end as root. At the command line, type the following as root: Log into the new front end as root. At the command line, type the following as root:
## Rocky
```plaintext ```plaintext
groupadd -g 1001 controls groupadd -g 1001 controls
useradd -u 1001 -s /bin/bash -m -g controls controls useradd -u 1001 -s /bin/bash -m -g controls controls
passwd controls passwd controls
``` ```
## Debian (bullseye, Debian 11)
```plaintext
/usr/sbin/addgroup --gid 1001 controls
/usr/sbin/adduser --uid 1001 --shell /bin/bash --ingroup controls controls
```
# install some helpful packages # install some helpful packages
``` ```
... ...
......