While the sudo and su commands are both ubiquitous in Linux, for neophytes, it can be unclear when to opt for one rather than the other due to their syntactical similarities as well as overlapping functions. To simplify things, sudo and su are two distinct commands that can be used to switch user contexts within a Linux environment.
To compare the two, let’s briefly review what sudo and su do in Linux systems.
What is sudo in Linux?
Sudo stands for “superuser do or substitute user do” and provides users with temporary access to run commands as the superuser (root). This allows users to perform administrative tasks such as installing packages, creating files in system directories, or editing configurations. Sudo is especially useful when performing a single action that requires root privileges; afterward, the user’s permissions are reset to those of a regular user.
What is su in Linux?
Su is short for “switch user or substitute user” and, as the name implies, allows users to switch between different accounts within their Linux system. Unlike sudo, su doesn’t provide temporary access; it changes the logged-in user to a root user, granting full administrative permissions for the duration of the session.

sudo vs su: Root User
The sudo command is designed to provide temporary privileged access or superuser status to users who are not logged in as root. This is done by temporarily changing the user context to that of the root user. With sudo, users are restricted to executing specific commands for which they have been given access rights.
On the other hand, su stands for ‘substitute user’ and will allow any logged-in user to switch their current session’s privileges to that of another user. Unlike the sudo command, su does not require any verification or authentication to switch users.
sudo vs su: Usage and Performance
In terms of usage and performance, sudo is generally considered to be faster and simpler than su due to its limited scope and access restrictions. Further, with sudo, system administrators can conveniently decide which commands may be run by specific users without having to give that user root access.
In contrast, su makes it easy for users with the appropriate permissions to switch contexts and execute commands as another user without restriction.
The downside is that it requires more effort from the system administrator to manage proper control of which users can become superusers. Additionally, sudo’s authentication process adds an extra layer of security, which can be beneficial for enterprise-level implementations.
How to Use the su Command
By using the su command, you can rapidly shift between users without any hassle. It either launches a login shell that follows your current directory and environment (su), or completely transitions to another user’s settings (su -). This is an incredibly useful tool for anyone looking to quickly switch identities! This makes it an ideal tool when switching between users in your system.
The main syntax is: su [-l] [-c <command> ]
<username>
-l: This option makes su behave like a login shell. It sets the environment for the target user as if they had logged in directly.
-c: This option allows you to specify a command, which will be executed with the target user’s privileges.
How to Use the sudo Command
The sudo command is used to provide additional privileges to users in order to execute commands that require special permissions. To use the sudo command, you must be a member of the sudoers group and provide your password for authentication.
The main syntax is: sudo [-u <user> ] <command>
-u: This option allows you to specify a target user, which will be used when running the command.
Main Differences Between Su and Sudo – At a Glance
1. The sudo command allows you to execute commands with elevated privileges, while the su command is used to switch user contexts.
2. The sudo command requires authentication and authorization before allowing users to run privileged commands, while the su command does not.
3. The sudo command is faster and easier to use due to its limited scope and access restrictions, while the su command requires more effort from the system administrator to manage proper control.
4. The sudo command offers an extra layer of security that is beneficial for enterprise-level implementations, while the su command offers a convenient way to switch user contexts without any verification or authentication.
Exploring how sudo and su Function Across Various Linux Distributions
If you are running a Linux distribution, sudo is often the preselected command to run commands with root privileges. However, some distributions opt for su and require users to enter their password when they attempt to switch user contexts. Ubuntu-based distributions prefer using sudo as its default command, while Fedora and RHEL favor su instead.
A Few Tricks of sudo and su
When using sudo, you can provide an alias for a command to make it easier and faster to run. For example, this would allow you to quickly run ‘sudo apt-get update’ instead of typing out the full command each time.
If you need to execute multiple commands with sudo or su, use the -c option to run each command as a sub-shell. This way, you can avoid having to type out the entire sudo or su command each time.
In Summary
Overall, sudo and su both provide ease of use and efficiency when it comes to managing users in Linux systems. System administrators must ensure that they have proper control over which users can become superusers and execute commands with root access.
Sudo is generally considered to be faster and simpler than su due to its limited scope, authentication process, and access restrictions. However, su may be the better choice for certain use cases as it does not require any verification or authentication to switch users.
Ultimately, when considering which of these commands is most appropriate for a given application or environment, the system administrator must evaluate the specific requirements of their users and environment.
Hope this helps! Thanks for reading.