1. How to Solve the 'Sudo: Command Not Found' Issue on Linux Systems – A Simple Guide

1. How to Solve the 'Sudo: Command Not Found' Issue on Linux Systems – A Simple Guide

Mark Lv13

1. How to Solve the ‘Sudo: Command Not Found’ Issue on Linux Systems – A Simple Guide

Key Takeaways

  • Become root (using “su -“) and install sudo using the “apt install sudo” command on Debian and Ubuntu.
  • Add your user to the sudo group using the “usermod -aG sudo username” (Debian/Ubuntu) or “usermod -aG wheel username” (other distros) commands as a root user.
  • If sudo is installed but not working, add its directory to the PATH variable by editing the “/etc/profile” file as a root user.

Tried using your first Linux command as a superuser and getting the “sudo: command not found” error? This is one of the most common problems new Linux users face after a fresh installation. Here’s how you can solve this issue and start using the sudo command again.

For this tutorial, I’ll be demonstrating everything on Debian 12. However, you’ll find the necessary commands to fix the “sudo: command not found” error on other Linux distros as well.

What Is the sudo Command?

The sudo command on Linux, a contraction of the phrase “superuser do”, is a powerful utility that allows users to execute commands with the privileges of another user, typically root. With sudo, authorized users can perform administrative tasks without needing to log in as the root user.

The way to use sudo is to begin another command with the word “sudo”. This allows you to run the command with elevated privileges. So the sudo command lets you have the required permissions of a different user and run a sensitive command. You can learn more about the sudo command from its manual page .

Why Are You Getting This Error?

There are usually two possible reasons for the “sudo: command not found” error on Linux. It’s either because sudo is not installed or the sudo directory is not present in your system’s PATH variable.

Some Linux distributions may not have the sudo package installed by default. This is true for Arch and Gentoo Linux. On Debian, if you set a root password during installation, then you’ll face the same problem.

An example of the error sudo command not found on Debian Linux being displayed on the terminal

The second reason is that sudo is installed, but its directory is not included in the PATH variable. PATH is an environment variable the Linux system uses to locate a command without specifying its full path.

When you type a command in the terminal, the system searches through the directories listed in the PATH variable and tries to find the correct executable file. If the sudo command is not in that PATH variable, the system will not find it and won’t be able to use it.

Here’s How to Fix the “sudo: command not found” Error

If you don’t have sudo installed, installing it and adding your user to the sudo/wheel group should be enough to fix the problem. To ensure whether you have sudo installed, run:

sudo -V

An example of checking the version of sudo installed on Debian using the sudo -V command

If you don’t have sudo installed, you should see a similar output, in which case proceed to the following method.

Install sudo on Linux

To install the sudo package, you need to become root first. To become a root user, open your terminal and run:

su -

Type in the root password and press Enter. If successful, you should see the shell prompt become white and the word “root” written at the beginning of the prompt.

An example of becoming root user on Debian Linux using the su - command

As a root user, you can install any software package, including sudo. To install sudo, run this command on Debian-based distros:

apt install sudo

The Linux terminal showing the process of installing the sudo command as a root use

For RHEL-based systems, use this command:

yum install sudo

On Arch Linux, run:

pacman -S sudo

If you’re using Gentoo, then use this command:

emerge –ask app-admin/sudo

Jutoh is an ebook creator for Epub, Kindle and more. It’s fast, runs on Windows, Mac, and Linux, comes with a cover design editor, and allows book variations to be created with alternate text, style sheets and cover designs.

Add Your User to the sudo Group

Once you’ve installed the sudo command, you need to add your non-root user to the sudo group . This is because you want to give that user superuser privileges. Then your non-root user can use the sudo command to gain elevated privileges.

To add a user to the sudo group, run this command on a Debian-based distro:

usermod -aG sudo username

Make sure to replace “username” in the command with the correct username.

The Linux terminal displaying the command to add a user to the sudoer group on Debian

If you’re using Arch Linux, Fedora, or other RHEL-based distros, then use the following command:

usermod -aG wheel username

Finally, switch back to the non-root user with:

su username

The Linux terminal demonstrating the process of switching between users on Debian using commands

SwifDoo PDF Perpetual (2-PC) Free upgrade. No monthly fees ever.

Now you can try a command beginning with sudo to test whether it’s working. For example, let’s try to update the packages on the system. To do that, use:

sudo apt update

An example of updating the packages on Debian Linux using the sudo apt update command

It works as expected.

vMix HD - Software based live production. vMix HD includes everything in vMix Basic HD plus 1000 inputs, Video List, 4 Overlay Channels, and 1 vMix Call
This bundle includes Studio 200 for vMix from Virtualsetworks, HTTP Matrix 1.0 automation scheduler, and 4 introductory training videos from the Udemy vMix Basic to Amazing course.

Try Adding sudo to the PATH Variable

If you already have sudo installed, but it’s still not working, then you need to add sudo to the PATH variable. Let’s first determine the location of the sudo command.

which sudo

An example of using the which command on Linux to display the location of a certain command

As you can see, it’s in the “/usr/bin/“ directory. Now let’s check if the directory is in the PATH variable or not. Run this command:

echo $PATH

The Linux terminal displaying the PATH variable content on Debian

Take advantage of PREMIUM features for 12 months.
Create your texts / logos without any limitation.
No attribution required when downloading.
No advertising on the website.
TextStudio.com PREMIUM - Yearly Membership

In my case, the location of the sudo command is present in the PATH variable. In case it’s not, you can add it with this command:

export PATH=$PATH:/usr/bin

However, this will only add the sudo command’s directory temporarily. After you end the terminal session, things will go back to what they were.

To permanently add the directory, open the “/etc/profile” file in a text editor. To open it in the nano text editor , first become root by entering su - and use this command:

nano /etc/profile

Edit the line that declares the PATH variable. Add a colon (:) and then append the path to sudo (“/usr/bin” in this case.)

The /etc/profile file opened in the Nano text editor with its content displayed on the Linux terminal

Save the file using Ctrl+O and then exit from the editor using Ctrl+X. Now try to use the sudo command to see if it’s working.


That should solve your problem and let you use the sudo command without any errors. Remember that, only the users added to the sudo group will be able to use it. If you want to grant sudo privileges to more users, check out our guide on controlling sudo access on Linux .

  • Title: 1. How to Solve the 'Sudo: Command Not Found' Issue on Linux Systems – A Simple Guide
  • Author: Mark
  • Created at : 2024-08-31 06:09:30
  • Updated at : 2024-09-01 06:09:30
  • Link: https://some-guidance.techidaily.com/1-how-to-solve-the-sudo-command-not-found-issue-on-linux-systems-a-simple-guide/
  • License: This work is licensed under CC BY-NC-SA 4.0.