Tech Blog

HOW TO

Sudo or Sudo Not, There Is No (4th) Try

If you’ve been using Linux for any length of time, at some point in some tutorial or troubleshooting guide you’ve more than likely encountered Linux’s magic word: “sudo”. A casual observer probably can tell you that it’s used to access restricted functions on your computer, but there is much more to it than that.

My hope is that by taking a moment to dig into the history and inner workings of this command, you will be better equipped to utilize — and respect — the power of “sudo”.

To understand “sudo”, it helps to look at Linux’s ancestor, Unix. The Unix operating system was invented back in the days when computers took up entire rooms, and they usually were found only on university or corporate campuses.

Access typically was provided to as many people as possible through a system of cables running from the computer to keyboard-and-screen terminals, where users could input commands to be sent back to HQ for evaluation. Users would have individual accounts with privileges limited, so they couldn’t interfere with one another or the core system. To manage everything, an administrator had access to an all-powerful root account.

However, there were times when certain users wanted to provide access to their accounts to other users. That was accomplished through the predecessor to “sudo”, the “su” command. Short for “substitute user,” “su” allows logging into the account of another user (without having to log out of the user’s own) by simply running “su” with the other user’s name as an argument, and entering that user’s password when prompted.

Trading Places

For example, let’s say that Alice and Bob both have their own university computer accounts. Alice is doing a week-long project crunching some numbers, but she will be away for a few days in the middle with no access to the computer, and she can’t put off the work until she gets back. If she simply shares her password with Bob, then he can run “su” with Alice’s username (let’s call it “alice”), enter her password, and maintain her running programs.

[bob@unix]$ su alicePassword: [alice@unix]$

When Bob is finished running Alice’s tasks, he simply enters “exit” in the terminal, and his session will return.

[alice@unix]$ exit[bob@unix]$

To show the transition between users, I have provided an example command prompt, the little bit of informative text that comes before the cursor on the terminal. The example prompt is a very standard one: the text before the “@” separator is the user, and the text after is the name of the computer (the brackets are just to keep things organized).

The “su” command even can be used to switch into the root account. At the same campus computer, if Xavier, the administrator, were away from campus, he definitely would want to line up someone to administer the system as his backup just in case something should go wrong, rather than risk a crash! He could give Yolanda the root account password, and she could assume root from her terminal by simply running “su” by itself, as “su” defaults to root if given no arguments.

[yolanda@unix]$ suPassword:[root@unix]#

One special feature of the command prompt is that to remind users of their elevated privileges while running as root, the “$” changes to a “#”. When Yolanda is done, she simply types “exit”.

[root@unix]# exit[yolanda@unix]$

With most systems, by default any user is allowed to use “su” to log in as any other user, including root, as long as that user’s password is provided, but the administrator can change this permission.

There are a couple of critical limitations with “su”. The most glaring is that for it to work, you have to share your password with someone else — which is never a good thing to do, no matter how much you trust the other person.

No matter how much Xavier might trust Yolanda with the root password, if she writes it down to remember it and then loses the paper, anyone who finds it would have complete control of the campus computer.

The other problem is that users stay logged in as the substitute user until they run “exit”. If Yolanda is logged in on the root account and forgets that she has full system privileges the entire time, then it’s possible that a wrong keystroke could have disastrous consequences.

This is where “sudo” comes in. The primary function of “sudo”, which stands for “substitute user do,” is to allow a user to run a single command as another user — without requiring the other user’s password — and then returning automatically to the first user’s account, with all the account changing handled in the background.

In our example, Xavier would set up a “sudoers” (sometimes called”wheel”) group to include the user “yolanda” and configure access to the group to be authorized by Yolanda’s own password, rather than the root password.

Then, when Xavier takes off, he doesn’t have to give Yolanda his root password. When she needs to run a command as root, she simply puts “sudo” in front of the command and enters her own password, allowing her to execute the command without leaving her session.

[yolanda@unix]$ sudo command

Alice can enable Bob to attend to her projects using “sudo” by asking Xavier to configure “sudo” to allow Bob to access her account, protected by his password. Bob then would have to issue “sudo” with the “-u” option and the user “alice” as an argument to it, followed by the desired command.

[bob@unix]$ sudo -u alice command

Safety Check

Once Unix became the model for personal, single-user desktop operating systems, including many familiar desktop Linux distributions, “sudo” proved to be particularly useful. Most of the time, a typical desktop user will only need to run a couple of commands with root privileges at a time.

Using “sudo” lets them return safely to their unprivileged accounts once each command finishes.

Moreover, if the user practices the good habit of running everything without “sudo” until a command demands it, “sudo” acts as a kind of check that prevents the user from accidentally doing something destructive.

If you’re trying to delete something with “rm” and you accidentally specify a file belonging to root, not having prepended the command with “sudo” would end up saving the file. If your habit were to use “su” instead of “sudo,” and you had forgotten to log out, that file would be gone.

This primer should give you a good idea of what “sudo” is and why it works the way it does, although there are a lot more configuration options that allow users or administrators to use “sudo” to compartmentalize user access even further. As with actual magic words, the power of “sudo” is that the magic happens only when it’s intended.

Jonathan Terrasi

Jonathan Terrasi has been an ECT News Network columnist since 2017. His main interests are computer security (particularly with the Linux desktop), encryption, and analysis of politics and current affairs. He is a full-time freelance writer and musician. His background includes providing technical commentaries and analyses in articles published by the Chicago Committee to Defend the Bill of Rights.

2 Comments

  • You article is very flawed. Your article appears to be aimed at a multi-user business system. This comment assumes that situation.

    su is NOT short for "substitute user". (Some sites do say "substitute user", incorrectly!) It is short for "superuser". It’s primary use is NOT to execute commands as another user (Although it can be used that way by an Administrator, only!) but to elevate a Administrator’s user privilege to root temporally to execute commands as root.

    Also as a Linux System Administrator professional, I am never confused if I am a regular user ‘$’ or root ‘#’. Most users of "su", never type, "exit", they execute a simple [Ctrl]-[d].

    As a Linux professional, I do not allow "sudo" on my systems, at all! It has been removed completely! I do NOT want end users executing ANY root level commands.

    "He could give Yolanda the root account password…" If Yolanda was NOT an Administrator, she would NEVER be given the root password. All my systems would be accessible by me securely through SSH, so I would do any maintenance remotely, or by a fully qualified secondary Administrator locally!

    "…"sudo" acts as a kind of check that prevents the user from accidentally doing something destructive." If end users cannot "sudo", then they cannot, "do something destructive" in the first place! sudo does not eliminate all chances of harming the system!!!

    "If she simply shares her password with Bob, then he can run "su" with Alice’s username." Or Bob can simply log in as Alice, without the need for su! Plus doing this would be a clear violation of my computer policies!!!

    If two users need access to the same data, I would simply set up a shared directory that they, and possibly others, could access, but no one else, except myself, of course, eliminating this use of sudo.

    If a user owns a Linux computer at home and is under their full control, then that user can use sudo or any other command they wish, at their own risk, but not in a business system at any level! There are other options and/or policies available.

    I strongly recommend you go back a study a good book on Linux/UNIX, and the CLI, (Command Line Interface), and do a "man su".

Leave a Comment

Please sign in to post or reply to a comment. New users create a free account.

Related Stories

LinuxInsider Channels