Answers for "add user to sudoers group centos"

7

add user to group linux

sudo usermod -aG <groups> <username>
Posted by: Guest on October-02-2021
0

add sudo user centos server group

# :::::: - AGREAGAR SUDO, EN CENTOS 7 SERVER - :::::

#creamos el usuario 
adduser junior
#creamos el pasword
passwd junior123
#agregamos el permiso de SUDO AL usuario "junior"
usermod -aG wheel junior
Posted by: Guest on November-07-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language