Link Search Menu Expand Document

How to configure Debian 9

Install SUDO

 $ apt-get install sudo -y

Create your user

DO NOT USE root AS YOUR PRIMARY USER

To add user you need to run:

 $ adduser <username>

Give sudo access for your created user <username>:

 $ usermod -aG sudo <username>

Done!