Page 1 of 1
Forum

Welcome to the Tweaking4All community forums!
When participating, please keep the Forum Rules in mind!

Topics for particular software or systems: Start your topic link with the name of the application or system.
For example “MacOS X – Your question“, or “MS Word – Your Tip or Trick“.

Please note that switching to another language when reading a post will not bring you to the same post, in Dutch, as there is no translation for that post!



Debian - User is no...
 
Share:
Notifications
Clear all

[Solved] Debian - User is not in the sudoers file,. How to add a user to sudoers ...?

1 Posts
1 Users
0 Reactions
1,970 Views
 Hans
(@hans)
Famed Member Admin
Joined: 11 years ago
Posts: 2728
Topic starter  

So I started tinkering with Debian (on Intel and Arm64) and noticed that the standard user (not root) by default is not added to the sudoers.
Getting this error message when trying to use sudo:

hans is not in the sudoers file.  This incident will be reported.

 

This is what fixes it, by adding user to the sudoers file:

1. Open a super users (su) session in Terminal (you'll be ask for the root password!):

su
Password:

2. Use your favorite text editor (vi, nano,...) and edit /etc/sudoers

nano /etc/sudoers

3. Under this line

# User privilige specification
root   ALL=(ALL:ALL) ALL

Add (replace "hans" with the username you'd like to add) below this "root" line:

hans   ALL=(ALL) ALL

So you'd get something like this:

# User privilige specification
root   ALL=(ALL:ALL) ALL
hans   ALL=(ALL) ALL

4. Save the file, exit "su" mode, and test if this worked with something simple like:

sudo ls

   
ReplyQuote
Share: