# Create a linux user
> sudo adduser <name> --home /home/<name>
> sudo usermod -aG sudo <username>
1.
adduser
command create an user in Linux OS but without sudo permission.
2.
usermod
add the user to specific OS group, in this case the group is sudo.
Top comments (0)