Assign User Account With Admin Access On Linux Steps To Assign User Account With Admin Access On Linux:Create a new user and assign it a password.useradd otis passwd otis Copy Now give otis admin access.usermod -aG wheel otis Copy login as otis and run the whoami command to verify the sudo access.sudo whoami Copy The password must be entered when prompted. If the user has sudo access, "root" will be printed by the command. Comments
Comments