arrow_back
Adding a Sudo User to the Server
1. Create a New User
adduser ubuntu
2. Add the User to the Sudo Group
usermod -aG sudo ubuntu
By following these steps, you will be able to add a new user named "ubuntu" to the server and grant them sudo privileges. This will allow the user to execute administrative commands with elevated privileges.
Published @ Dec 2022