Ubuntu User Configuration - Bobleoble/tech-journal GitHub Wiki

Adding a User:

To add a user, use the command adduser [user]. This will then prompt the user to create a secure password, and other information if needed.

  • adduser Felix

Adding User's to Groups:

You can add a user to a group by using the command usermod -aG [group] [user].

  • usermod -aG sudo Felix
  • usermod -aG docker Felix