kacpimon command not found

In this troubleshooting guide we learn how to fix kacpimon command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

kacpimon: command not found

or when using sudo you get the following error message

sudo: kacpimon: command not found

Solutions to kacpimon: command not found

How To Fix kacpimon: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu kacpimon is provided by kacpimon package.

kacpimon is:

Modern computers support the Advanced Configuration and Power Interface (ACPI) to allow intelligent power management on your system and to query battery and configuration status.

kacpimon is a small tool that monitors kernel ACPI and keyboard events from multiple interfaces and reports them to the console.

To fix this problem, we can install more using the command below.

sudo apt-get -y install kacpimon

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install kacpimon.

sudo apt -y install kacpimon

Or if you have aptitude installed you can use the following command.

sudo aptitude install kacpimon

Summary

In this tutorial we learn how to fix kacpimon command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.