Create user in Linux
Set and confirm the new user’s password at the prompt. A strong password is highly recommended!
Set password prompts:Enter new UNIX password: Retype new UNIX password: passwd: password updated successfullyFollow the prompts to set the new user’s information. It is fine to accept the defaults to leave all of this information blank.
User information prompts:Changing the user information for username Enter the new value, or press ENTER for the default Full Name []: Room Number []: Work Phone []: Home Phone []: Other []: Is the information correct? [Y/n]
Use the
usermodcommand to add the user to thesudogroup.By default, on Ubuntu, members of the
sudogroup have sudo privileges.Test sudo access on new user account
Use the
sucommand to switch to the new user account.As the new user, verify that you can use sudo by prepending “sudo” to the command that you want to run with superuser privileges.
For example, you can list the contents of the
/rootdirectory, which is normally only accessible to the root user.The first time you use
sudoin a session, you will be prompted for the password of the user account. Enter the password to proceed.Output:[sudo] password for username:If your user is in the proper group and you entered the password correctly, the command that you issued with sudo should run with root privileges.
Comments
Post a Comment