There are easy steps to create new user in Ubuntu 16.04 LTS.
- Open terminal (Short cut key: Ctrl+Alt+t)
- We can create new user by root. So, we logged with root user using "sudo su" command.
- Here is command to create new user.
adduser <username>
- After creating user, We can give root privilege by below command.
usermod -aG sudo <username>
- Test the sudo access
su - username
sudo whoami





Comments
Post a Comment