Ubuntu Create New User Account

Command line for creating new user account in Ubuntu.

Create a user with a standard home directory in the /home folder and specifying the default shell.

# sudo useradd <username> -m -s /bin/bash

Create a password for the user

# sudo passwd <username>

Grant administrator privilege to user

# sudo adduser <username> sudo