Thursday 29 August 2019

how to add user or change password in ubuntu

to add user:
sudo adduser <name>
(then enter password for <name>)

to change the user right
sudo usermod -aG sudo <name>

to list all sudoers / root users
getent group sudo

to change <name> password
sudo passwd <name>

No comments:

Post a Comment