Question
Adding new user and giving root access
We have a Linux Ubuntu server, and would like to add new user on the account with root access - Would appreciate all suggestions.
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.
×
to add new user bill: ssh in and run these two commands
sudo adduser bill
sudo usermod -aG sudo bill
Thanks for the response