Answers for "linux add user to the sudo group"

3

show users in sudo group

grep -Po '^sudo.+:\K.*$' /etc/group
Posted by: Guest on February-23-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