Created new module for sudo

This commit is contained in:
Misha Husnain Ali 2017-12-14 09:55:25 +05:30
parent 048353c1d9
commit d524f5db7b

View file

@ -0,0 +1,11 @@
[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.