...
To give the user sudo permissions, add the user to the group
sudo
, which gives sudo access to all members.Code Block sudo usermod -aG sudo newuser
The following will show the usernames of those in the group
sudo
.Code Block getenegetent group sudo
To remove sudo permission, remove user from group
wheel
.Code Block sudo gpasswd -d newuser wheel
...