Sudo used on pacman | |
Release Status | Maintained |
---|---|
Last Release | 1.9.15p5, 2023-12-30 |
Language(s) | c |
Developer(s) | sudo project |
Website | www.sudo.ws/ |
sudo (substitute user do) is a cli tool used to run commands as other users (most likely root). the system administrator can further edit the permissions of which user/group can use sudo and what commands can they run it on through the /etc/sudoers
file
Usage
The following are several common usecases for sudo.
note: every mentioned command is also compatible with the -u <user>
argument, which will run the command as the given user instead of superuser
Command | Description |
---|---|
sudo <command>
|
run the given command as superuser |
sudo -E <command>
|
Run the given command as superuser while keeping the current user's env vars |
sudo -s
|
Opens a shell with superuser permissions |
TODO: explain the usage of sudoedit and /etc/sudoers