💾 Archived View for henn.es › cheatsheet › linux-admin.gmi captured on 2024-05-10 at 10:37:59. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-01-29)

🚧 View Differences

-=-=-=-=-=-=-

hennes' Linux adminstration cheatsheet

Create new user

adduser <username>

or alternatively (e.g. if adduser is unavailable)

useradd <username>

Create new group

groupadd <groupname>

Add user to existing group:

usermod -a -G <groupname> <username>