The Linux Newbie Guide  ⇒    Fundamentals     Advanced     Supplement   Command Index   ENG⇒中
All rights reserved, please indicate the source when citing
  

sudo - Change Identity and Execute Commands




The sudo (substitute user do) command allows you to change your identity to another user, typically the root user, and execute specified commands. It's commonly used for running commands with root privileges without needing the root password.

The basic syntax of the sudo command is: sudo [OPTIONS] COMMAND .

Some common options for the sudo command include: Example:
sudo -l ←List the commands that can be executed with sudo (requires relevant settings in the /etc/sudoers file to display)
User zlata may run the following commands on localhost:
(root) /sbin/shutdown, /bin/updatedb
sudo -b updatedb ← Run the 'updatedb' command in the background using sudo

For more information about how sudo works, additional examples, and details about the "/etc/sudoers" configuration file, please refer to the provided link.