In this tutorial it says to use below to give a new user sudo privileges:
gpasswd -a "newuser" sudo
https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-14-04
In this tutorial it says to use add newuser ALL=(ALL:ALL) ALL
using:
visudo
https://www.digitalocean.com/community/tutorials/how-to-add-and-delete-users-on-an-ubuntu-14-04-vps
Should I use both techniques?
Thanks!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
You only need to do one or the other. They are simply two different ways to accomplish the same task. In the first example, you are adding your user to the “sudo” group which has permissions to use the sudo
command. In the second, you are giving your user the permissions directly.
Click below to sign up and get $100 of credit to try our products over 60 days!
asb - Thank you for the help! I appreciate it.