Most likely if you are setting up a VPS with a cloud provider they gave you access to the machine with the root account. Using the root account for daily tasks is against best practices, so first things first, lets create a additional account for daily administrator tasks. If you are installing in VM you most likely already setup a additional account during the installation, if so you can skip to the next page.
In this guide we will be using a account named beheer
. This is interchangeable between systems. I’d recommend choosing something that you like.
To setup this user follow the instructions below:
adduser beheer
su beheer
apt-get install ncdu
. You will probably see a Error message. This is because this user account currently does not have rights to run this command. This is because this user has not been added to the sudoers group.exit
sudo adduser beheer sudo