💾 Archived View for henn.es › cheatsheet › linux-admin.gmi captured on 2024-08-25 at 00:02:28. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2024-05-10)

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

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>