• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer navigation

The Geek Diary

  • OS
    • Linux
    • CentOS/RHEL
    • Solaris
    • Oracle Linux
    • VCS
  • Interview Questions
  • Database
    • oracle
    • oracle 12c
    • ASM
    • mysql
    • MariaDB
  • DevOps
    • Docker
    • Shell Scripting
  • Big Data
    • Hadoop
    • Cloudera
    • Hortonworks HDP

sudo Command Examples in Linux

by admin

The sudo command allows an administrator to set up a configuration file called /etc/sudoers and define specific commands that particular users are permitted to execute under an assumed identity.

The sudo command is like su in many ways but has some important additional capabilities. The administrator can configure sudo to allow an ordinary user to execute commands as a different user (usually the superuser) in a controlled way. In particular, a user may be restricted to one or more specific commands and no others. Another important difference is that the use of sudo does not require access to the superuser’s password. Authenticating using sudo requires the user’s own password. Let’s say, for example, that sudo has been configured to allow us to run a fictitious backup program called backup_script, which requires superuser privileges. With sudo it would be done like this:

$ sudo backup_script
Password:
System Backup Starting...

After entering the command, we are prompted for our password (not the superuser’s), and once the authentication is complete, the specified command is carried out.

sudo V/s su

One important difference between su and sudo is that sudo does not start a new shell, nor does it load another user’s environment. This means that commands do not need to be quoted any differently than they would be without using sudo. Note that this behavior can be overridden by specifying various options. Note, too, that sudo can be used to start an interactive superuser session (much like su -) by specifying the -i option. See the sudo man page for details.

To see what privileges are granted by sudo, use the -l option to list them.

$ sudo -l
User me may run the following commands on this host:
(ALL) ALL

sudo Command Examples

1. To list the present sudo status for the user:

# sudo -l
# sudo -U santosh -l  (for specific user)

2. To long list the output:

# sudo –U santosh -ll

3. To remove users cached credentials:

# sudo -k

4. To get a file listing of an unreadable directory:

# sudo ls /usr/local/protected

5. To view system logs only accessible to root and users in the adm group:

# sudo -g adm view /var/log/syslog

6. To shut down a machine:

# sudo shutdown -r +15 "quick reboot" 

7. To run the command in background:

# sudo -b mount /dev/cdrom /DVD

8. To run the command as another user:

# sudo –u oracle /xyz/abc.sh

9. To execute the given command by setting the primary group to the given group:

# sudo –g DBA /xyz/abc.sh

10. To validate the user credentials:

# sudo –v         ### updates his cached credentials, like if password has been changed.

Final Thought

If you are allowed, sudo executes the command as the superuser. Authorized users of sudo and the commands they are permitted to execute are listed in the sudo configuration file, /etc/sudoers. If an unauthorized user attempts to run a command, sudo will inform an administrator via email. By default, it will send the message to the root account. Users attempting to run commands are prompted for their passwords. Once authenticated, sudo sets a timestamp for the user. For five minutes from the timestamp, the user may execute further commands without being prompted for her password. This grace period may be overridden by settings in the /etc/sudoers file. Also see /etc/sudoers for configuration examples.

Filed Under: Linux

Some more articles you might also be interested in …

  1. nmcli networking Command Examples
  2. fakeroot: command not found
  3. fscrypt: command not found
  4. flatpak-builder Command Examples in Linux
  5. gdebi Command Examples in Linux
  6. dirb: command not found
  7. chfn: command not found
  8. bitwise Command Examples in Linux
  9. createrepo Command Examples in Linux
  10. sar Command Examples in Linux

You May Also Like

Primary Sidebar

Recent Posts

  • protonvpn-cli Command Examples in Linux
  • protonvpn-cli connect Command Examples
  • procs Command Examples in Linux
  • prlimit: command not found

© 2023 · The Geek Diary

  • Archives
  • Contact Us
  • Copyright