Add New Users to Linux

Adding a new user in Linux is an easy process completed using the terminal. It won't take more than a few minutes if you read this article!

Steps

  1. Open a terminal.
  2. Ensure you are logged in as root. You can check by typing in "whoami" if not you can begin each command with "sudo"
  3. Type in
    • "useradd yourusernamehere"
  4. Type in
    • "passwd yourpasswordhere"

Tips

  • More information on the "adduser" command can be found by typing "adduser --help" or "man adduser".

Related Articles