Changes
Page history
Added different addgroup/adduser commands for Debian
authored
Jan 13, 2025
by
Caleb Wheeler
Show whitespace changes
Inline
Side-by-side
Post-Install-Setup.md
View page @
de5b1d6c
...
@@ -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
```
```
...
...
...
...