search

What does linux sudo mean?

Apr 14, 2022 pm 06:08 PM
linuxsudo

In Linux, the full name of sudo is "super user do", which means "doing things that the super user can do". It is a system permission management command that allows non-root users to run and only root has permission to execute. The command has the syntax "sudo [options] [-u new user account] command to be executed".

What does linux sudo mean?

The operating environment of this tutorial: Ubuntu 18.04 system, Dell G3 computer.

What does linux sudo mean?

The full name of Sudo is: super user do. As the name suggests: do things that can only be done by super users.

The Sudo command allows you to switch to the identity of another user to execute commands. (The su command is also available)

Compared with using the su command, which also requires a new user's password, the sudo command only requires knowing your own password to run. Even, we can manually modify the sudo configuration file. , allowing it to run without any password.

The sudo command can only be run by the root user by default. The basic format of the command is:

sudo [选项] [-u 新使用者账号] 要执行的命令

Commonly used options and parameters:

  • -b: Put subsequent commands in the background and let the system run by itself without affecting the current shell environment.

  • -u: The user name you want to switch can be followed by. If there is no such item, it means that the switching identity is root.

  • -l: The usage of this option is sudo -l, which is used to display which commands the current user can use sudo to execute.

The role of SUDO

sudo is Linux system permission management, which allows system administrators to let ordinary users perform some or A tool for all root commands, such as halt, reboot, su, etc. In other words, this command allows non-root users to run commands that only root has permission to execute.

This not only reduces the login and management time of the root user, but also improves security.

SUDO Principle

Can every newly created user use sudo to elevate the authority of commands? If not then which users can use this command?

To enable a user to have the ability to use sudo, the root user needs to register his name, the specific commands that can be executed, and the identity of which user or user group to execute them in the /etc/sudoers file. , that is, the authorization of the user is completed (the user is called "sudoer" at this time).

When a general user executes special permissions, add sudo before the command. At this time, the system will ask you to enter your password to confirm that you are operating in front of the terminal. After confirmation, the system will replace the command process with Run with superuser privileges.

Within a certain period of time, the password will no longer be asked when executing the sudo command again. After this period of time (usually 5 minutes), you need to enter the password again.

Specific use

It is assumed that the company's service uses the Ubuntu 18.04 operating system

When the intern girl Niu Cuihua reports for internship at "Perry Tomato Technology" company, the team leader Wang Ergou needs to create an account for her that can use the sudo command. What should she do?

Step one: Ergou first logs in to the root account and uses the following command to create an account: cuiHuaNiu.

adduser cuiHuaNiu

During the creation process, you need to specify the password of the cuiHuaNiu account, as well as other personal information, such as phone number, etc. Ergou can also take the opportunity to get the girl's phone number.

Step 2: Grant cuiHuaNiu administrator rights, that is, register it in the /etc/sudoers file

By default, there is a sudo group on Ubuntu 18.04, which belongs to this All users in the group can use the sudo command, so Ergou only needs to add cuiHuaNiu to the sudo group.

usermod -aG sudo cuiHuaNiu
  • -a parameter means appending, and is only used with the -G parameter to add the user to the group.

Step 3: Niu Cuihua can use cuiHuaNiu to log in to the server, and then use sudo to execute commands that can only be executed by the administrator. Of course, if Cuihua has root permissions, you can also use sudo -i to switch the user identity to root.

ssh cuiHuaNiu@sng.com

Advantages

  • sudo can restrict users to run certain commands only on a certain host.

  • sudo provides rich logs, recording in detail what each user has done. It can transmit logs to a central host or log server.

  • sudo uses timestamp files to perform a similar "ticket checking" system. When the user calls sudo and enters their password, the user is issued a ticket with a lifespan of 5 minutes (this value can be changed at compile time).

  • sudo's configuration file is the sudoers file, which allows system administrators to centrally manage user permissions and hosts.

Related recommendations: "Linux Video Tutorial"

The above is the detailed content of What does linux sudo mean?. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Understanding Linux: The Core Components DefinedUnderstanding Linux: The Core Components DefinedMay 01, 2025 am 12:19 AM

The core components of Linux include kernel, shell, file system, process management and memory management. 1) Kernel management system resources, 2) shell provides user interaction interface, 3) file system supports multiple formats, 4) Process management is implemented through system calls such as fork, and 5) memory management uses virtual memory technology.

The Building Blocks of Linux: Key Components ExplainedThe Building Blocks of Linux: Key Components ExplainedApr 30, 2025 am 12:26 AM

The core components of the Linux system include the kernel, file system, and user space. 1. The kernel manages hardware resources and provides basic services. 2. The file system is responsible for data storage and organization. 3. Run user programs and services in the user space.

Using Maintenance Mode: Troubleshooting and Repairing LinuxUsing Maintenance Mode: Troubleshooting and Repairing LinuxApr 29, 2025 am 12:28 AM

Maintenance mode is a special operating level entered in Linux systems through single-user mode or rescue mode, and is used for system maintenance and repair. 1. Enter maintenance mode and use the command "sudosystemctlisolaterscue.target". 2. In maintenance mode, you can check and repair the file system and use the command "fsck/dev/sda1". 3. Advanced usage includes resetting the root user password, mounting the file system in read and write mode and editing the password file.

Linux Maintenance Mode: Understanding the PurposeLinux Maintenance Mode: Understanding the PurposeApr 28, 2025 am 12:01 AM

Maintenance mode is used for system maintenance and repair, allowing administrators to work in a simplified environment. 1. System Repair: Repair corrupt file system and boot loader. 2. Password reset: reset the root user password. 3. Package management: Install, update or delete software packages. By modifying the GRUB configuration or entering maintenance mode with specific keys, you can safely exit after performing maintenance tasks.

Linux Operations: Networking and Network ConfigurationLinux Operations: Networking and Network ConfigurationApr 27, 2025 am 12:09 AM

Linux network configuration can be completed through the following steps: 1. Configure the network interface, use the ip command to temporarily set or edit the configuration file persistence settings. 2. Set up a static IP, suitable for devices that require a fixed IP. 3. Manage the firewall and use the iptables or firewalld tools to control network traffic.

Maintenance Mode in Linux: A System Administrator's GuideMaintenance Mode in Linux: A System Administrator's GuideApr 26, 2025 am 12:20 AM

Maintenance mode plays a key role in Linux system management, helping to repair, upgrade and configuration changes. 1. Enter maintenance mode. You can select it through the GRUB menu or use the command "sudosystemctlisolaterscue.target". 2. In maintenance mode, you can perform file system repair and system update operations. 3. Advanced usage includes tasks such as resetting the root password. 4. Common errors such as not being able to enter maintenance mode or mount the file system, can be fixed by checking the GRUB configuration and using the fsck command.

Maintenance Mode in Linux: When and Why to Use ItMaintenance Mode in Linux: When and Why to Use ItApr 25, 2025 am 12:15 AM

The timing and reasons for using Linux maintenance mode: 1) When the system starts up, 2) When performing major system updates or upgrades, 3) When performing file system maintenance. Maintenance mode provides a safe and controlled environment, ensuring operational safety and efficiency, reducing impact on users, and enhancing system security.

Linux: Essential Commands and OperationsLinux: Essential Commands and OperationsApr 24, 2025 am 12:20 AM

Indispensable commands in Linux include: 1.ls: list directory contents; 2.cd: change working directory; 3.mkdir: create a new directory; 4.rm: delete file or directory; 5.cp: copy file or directory; 6.mv: move or rename file or directory. These commands help users manage files and systems efficiently by interacting with the kernel.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment