How To Install ipmitool on Fedora 34
Introduction
In this tutorial we learn how to install ipmitool
on Fedora 34.
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 34. In this tutorial we discuss both methods but you only need to choose one of method to install ipmitool.
Install ipmitool on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install ipmitool
using dnf
by running the following command:
sudo dnf -y install ipmitool
Install ipmitool on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
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 34
To uninstall only the ipmitool
package we can use the following command:
sudo dnf remove ipmitool
ipmitool Package Contents on Fedora 34
/usr/bin/ipmitool
/usr/lib/.build-id
/usr/lib/.build-id/13
/usr/lib/.build-id/13/5ffec8637046fb445a8c90f30c7d37e8488a36
/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 34 using yum and dnf.