Sudoers: Difference between revisions

From Free Knowledge Base- The DUCK Project
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 15: Line 15:


STEPS TO BECOME A SUDOER
STEPS TO BECOME A SUDOER
# add user to sudoers group
# add user to sudoers group:  '''visudo'''
# restart sudo service sudo restart
# restart sudo service: '''sudo service sudo restart'''

Revision as of 10:44, 13 January 2024

The linux sudoers file defines users with the permission to use the sudo command.

To see if you currently have permission to use sudo then simply test at the cli.

sudo ls

For Debian based Ubuntu and Mint:

users in the adm group can execute sudo. Rather than editing the /etc/sudoers file it is better to edit the /etc/group file using the following command (from another user account with sudo privileges)

sudo vigr

Now add your user account to the adm group.

You must log out and back in again for the changes to impact your shell.

It has been observed that logging out of the cinnamon desktop session on Mint and back in does not seem to be sufficient. If you are frustrated, just reboot the machine.

STEPS TO BECOME A SUDOER

  1. add user to sudoers group: visudo
  2. restart sudo service: sudo service sudo restart