Learn How to Create a sudo and restricted sudo user in Linux
Type the following command to create a new user
sudo useradd -m master -s /bin/bash
Type the following command to set a password for the new user
echo 'master:password' | sudo chpasswd
Now, we need to add the new user to the sudo group, which will...
mdusama.hashnode.dev2 min read