How To Install ipmitool on Fedora 36
Introduction
In this tutorial we learn how to install ipmitool
on Fedora 36.
What is ipmitool
This package contains a utility for interfacing with devices that support the Intelligent Platform Management Interface specification. IPMI is an open standard for machine health, inventory, and remote power control. This utility can communicate with IPMI-enabled devices through either a kernel driver such as OpenIPMI or over the RMCP LAN protocol defined in the IPMI specification. IPMIv2 adds support for encrypted LAN communications and remote Serial-over-LAN functionality. It provides commands for reading the Sensor Data Repository (SDR) and displaying sensor values, displaying the contents of the System Event Log (SEL), printing Field Replaceable Unit (FRU) information, reading and setting LAN configuration, and chassis power control.
We can use yum
or dnf
to install ipmitool
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install ipmitool.
Install ipmitool on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install ipmitool
using dnf
by running the following command:
sudo dnf -y install ipmitool
Install ipmitool on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install ipmitool
using yum
by running the following command:
sudo yum -y install ipmitool
How To Uninstall ipmitool on Fedora 36
To uninstall only the ipmitool
package we can use the following command:
sudo dnf remove ipmitool
ipmitool Package Contents on Fedora 36
/usr/bin/ipmitool
/usr/lib/.build-id
/usr/lib/.build-id/fd
/usr/lib/.build-id/fd/d089a3fef364eb674b1dc702dd4f09afc4b193
/usr/share/doc/ipmitool
/usr/share/doc/ipmitool/AUTHORS
/usr/share/doc/ipmitool/COPYING
/usr/share/doc/ipmitool/ChangeLog
/usr/share/doc/ipmitool/README
/usr/share/ipmitool
/usr/share/ipmitool/oem_ibm_sel_map
/usr/share/man/man1/ipmitool.1.gz
References
Summary
In this tutorial we learn how to install ipmitool
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).