Creating new user in CentOS and adding to Sudoers

Add user anthony
# useradd anthony

Set password for anthony
# passwd anthony

The above command will create anthony user and home directory in /home/anthony

Adding anthony to sudoers
# usermod -aG wheel anthony

Now anthony user can run sudo commands