linux give user sudo code example
Example 1: add user to sudoers
usermod -aG sudo username
Example 2: add sudo user ubuntu
# add a user and set a password
adduser USERNAME
# add user to sudoers / sudo groupe with command below
usermod -aG sudo USERNAME
Example 3: add user to sudoers
echo "username ALL=(ALL) NOPASSWD:ALL" | sudo tee /etc/sudoers.d/username
Example 4: add user with sudoer centos
username ALL=(ALL) NOPASSWD:/usr/bin/du,/usr/bin/ping