quick-docs/en-US/modules/concept-what-is-sudo.adoc
2017-12-14 09:55:25 +05:30

11 lines
No EOL
713 B
Text

[id=”concept-what-is-sudo”]
= What is `sudo`
The [command]`sudo` command allows users to gain administrative or root access. When trusted users precede an administrative command with [command]`sudo`, they are prompted for their own password. Then, when they have been authenticated and assuming that the command is permitted, the administrative command is executed as if they were the root user.
Only users listed in the [filename]`/etc/sudoers` configuration file are allowed to use the [command]`sudo` command. The command is executed in the user's shell, not a root shell.
The syntax for the sudo command is as follows:
----
sudo COMMAND
----
Replace _COMMAND_ with the command to run as the root user.