Skip to main content

Administrator Permissions

On Debian, our user account cannot run commands as Root through the terminal.  We will be changing this for simplicity sake.

Skip this step when using a Raspberry Pi.

We need to open the Terminal application from the system section of the start menu.

Screenshot from 2025-04-14 23-01-20.png

By default, we need temporarily "substitute users" to root.

Enter the command:

su root

image.png

image.png

We will need to enter the password we chose for our root account during the installation process.

When you are typing a password through the terminal, it will not display that you have typed any characters.

Now that we are acting as the root account, we can configure our user account to have the permissions to run all the same commands.  This command ensures we cannot break permissions on our computer.

Enter the command:

sudo visudo

image.png

image.png

Navigate to the "user privilege specification" section using the arrow keys on your keyboard.  Underneath this section, we will be adding our user account that we just created.  Change 'username' to the user name you selected. 

username    ALL=(ALL:ALL) ALL

image.png

Once you are completed, hit Ctrl-X to save and Enter to confirm.  Finally, we will hit Ctrl-O to quit visudo. Your user account can now run commands using sudo. 

You can exit root by entering the command:

exit

image.png

This will return you to the terminal for your user account.