How do I create a new user account on Ubuntu?
Asked
Active
Viewed 7.7k times
2 Answers
25
useradd -m -g users <username> will create the user and add them to the "users" group.
-madds a user directory (i.e.,/home/<username>).-gadds that user to a specified group. This is optional.
Look into the useradd reference for more info on using the command.
2
Follow these steps to create a new user in Ubuntu :
- Open Terminal by pressing Crtl+Alt+T or Search 'Terminal' in Dash.
Execute the following command in terminal
sudo apt-get install gnome-system-tools
Search "Users" in Dash

- Click and it will run the Users and Groups :

- Click Add Button to add new user

Faizan Akram Dar
- 4,569
- 1
- 25
- 31