Creating a Ubuntu/Linux user
sudo adduser alpha
Answer all quesions, I isually hit Enter on all except Full Name
If you want to make this a sudo-able user, add him to the sudo group at the same time
sudo adduser <username> sudo
To add an EXISTING user to the sudo group, do this
sudo usermod -a -G sudo <username>