The systemctl: command not found error is most likely caused by an earlier version of Linux that does not support the systemctl command, causing the PC to show the “Systemctl: command not found” error instead of performing the appropriate command. But before we move on to fixes, let’s take a closer look at the systemctl and systemd commands and the root cause of the problem.
What are systemctl and systemdCommands in Linux
The error message systemctl: command not found indicates that the Systemclt Linux command is involved; it is good to learn more about it to comprehend it better. The systemctl command-line utility was initially created by Linux to regulate and monitor another command-line utility known as the systemd command-line utility. In addition to the systemd tool, Linux uses the systemctl command to control and examine system management. The general syntax of the systemctl command is: The systemd command-line utility is a collection of libraries, daemons, and tools used to manage the applications required to run the Linux system when it is booting up. It also oversees the appropriate start-up of things like a system activity log. Overall, this program serves as the primary administration tool for most Linux-based operating systems.
What Causes the “systemctl: command not found” Error
Even though there may be other reasons, this problem is most commonly caused by having an earlier version of the Linux operating system. Many older Linux versions utilize SysV init rather than systemd. Older versions of Linux cannot run the systemclt command because the systemd command-line utility is used to monitor and operate the systemd command-line utility. Below is an example of what this error message looks like: In the above example, we have tried starting the Ubuntu firewall, that is, ufw, using the systemctl command. However, this resulted in the “systemctl: command not found” error.
Fix systemctl: command not found Error.
So, what should you do now if you don’t want to switch to another Linux version but still want to fix the problem? Fortunately, this is achievable, and here is how you can do so.
Replace systemctl With serviceCommand
The solution to systemctl: command not found is to replace the systemctl command with the service command. The service command aids in executing the SystemV init script used by earlier Linux operating systems. If you don’t want to install the Systemd program, you may use this to complete your task. The service command allows you to start, stop, or even restart any service or daemons on any Linux OS with ease. In a nutshell, the systemctl and service commands have the same functionality. The only difference is their compatibility with the command utilities accountable for all Linux-oriented systems’ proper functioning. The following example will demonstrate how the service command is implemented: The [action] space is used to assign the action, like status, restart, start, or stop, to the preferred Linux service provided in place of the [service_title] space. Let us try executing the same command with the service command while initiating the ufw service. As a result, the command will be as follows: On running this command, the output will be as follows: There is no error line systemctl: command not found in the above example. Why? Because the user used the service command instead of the systemctl command to launch the Ubuntu Firewall.
Ensure Systemd Package is Installed
A simple installation of the systemd package will sometimes resolve the problem. But first, you will need to check the systemd package’s status on your Linux OS. You may use the following command to see if this is the case: On running this, you will get this output if the systemd utility has been installed: However, if the systemd utility has not been installed on your PC, you will need to install it by using these commands: In certain circumstances, the problem continues even after the installation has been completed. In this scenario, you can use the following command to restore the systemd utility:
What is the root cause of this error?
The most likely cause of this issue is using an outdated or older version of the Linux distribution. Many earlier versions rely on the SysV init tool rather than the systemd utility. The systemd utility is not included in former Linux versions since it is a relatively new addition to the basket of utilities given by Linux. systemctl is compatible with the systemd utility and will not operate with former setups such as Upstart or SysV init. The systemctl command not found error is anticipated if you are not utilizing the systemd. That’s how easy and uncomplicated it is.
How do you check if the systemd package is installed on your PC?
The first thing you need to do is open your terminal, then use the following command: If the system is installed in your PC, you will get an output similar to this:
How do you install systemd?
If the systemd package is not installed on your computer, you need to first update your Linux version by using the following command: Then, use this command to install it: However, if this error persists, you need to reinstall the package by using this command: It will help you solve the problem for good.
Final Words
The above explanation and steps show how you fix the systemctl: command not found problem on your Linux computer. This troubleshooting tutorial concludes that the issue may be quickly resolved by utilizing the service command instead of systemd or systemctl. This is due to the unsupported behavior of the systemd command on earlier Linux operating systems. If the system tool is not installed but supported by your Linux version, you should consider installing it.
Δ