ipmidetect command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ipmidetect: command not found
or when using sudo you get the following error message
sudo: ipmidetect: command not found
Solutions to ipmidetect: command not found
How To Fix ipmidetect: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ipmidetect is provided by freeipmi-ipmidetect package.
freeipmi-ipmidetect is:
FreeIPMI is a collection of Intelligent Platform Management IPMI system software. It provides in-band and out-of-band software and a development library conforming to the Intelligent Platform Management Interface (IPMI v1.5 and v2.0) standards.
This package contains a tool and a daemon for detecting IPMI nodes.
To fix this problem, we can install more using the command below.
sudo apt-get -y install freeipmi-ipmidetect
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install freeipmi-ipmidetect.
sudo apt -y install freeipmi-ipmidetect
Or if you have aptitude installed you can use the following command.
sudo aptitude install freeipmi-ipmidetect
Summary
In this tutorial we learn how to fix ipmidetect command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.