Root and Sudo: Difference between revisions

From Chalphy Cyber Cavaliers
No edit summary
Line 1: Line 1:
I covered root and sudo briefly in [[Linux 101]]. But I will talk more about the configuration behind them here.
==Sudoers==
==Sudoers==


Line 25: Line 27:


You can specify users to allow to use sudo and other groups too. And you can change how much freedom they are given. The statements by default are written like this:
You can specify users to allow to use sudo and other groups too. And you can change how much freedom they are given. The statements by default are written like this:
<code>who where=(as_whom) what</code>
<code>who where=(as_whom) what</code>
 
This is a statement I used on my laptop because my browser needs to be run as root:
<code>brendan ALL=(root) NOPASSWD: /usr/bin/firefox-esr</code>
 
It is worth noting also that because you won't be able to edit the sudoers file again if you mess up (unless you have the system configured so you can login as root with a password), there is a special command called ***visudo*** which helps you out.

Revision as of 19:36, 2 May 2024

I covered root and sudo briefly in Linux 101. But I will talk more about the configuration behind them here.

Sudoers

I mentioned the Sudoers file briefly in the main Linux write up, but here we will go more in depth about it. Here is a typical Sudoers file:

Defaults	env_reset
Defaults	mail_badpass
Defaults	secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"

# Host alias specification

# User alias specification

# Cmnd alias specification

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

# Allow members of group sudo to execute any command
%sudo	ALL=(ALL:ALL) ALL

# See sudoers(5) for more information on "@include" directives:

@includedir /etc/sudoers.d

The lines of note here are the one that begins with root and the one that begins with %sudo. These lines specify permissions for specific users and user groups. The default specification grants the group sudo the ability to run commands as root with sudo and also says if you are root, you may also use sudo to prevent compatibility issues. Root can do anything, but it would give you an error if you didn't have that root line.

You can specify users to allow to use sudo and other groups too. And you can change how much freedom they are given. The statements by default are written like this: who where=(as_whom) what

This is a statement I used on my laptop because my browser needs to be run as root: brendan ALL=(root) NOPASSWD: /usr/bin/firefox-esr

It is worth noting also that because you won't be able to edit the sudoers file again if you mess up (unless you have the system configured so you can login as root with a password), there is a special command called ***visudo*** which helps you out.