How To Install iprutils on Fedora 34

iprutils is Utilities for the IBM Power Linux RAID adapters

Introduction

In this tutorial we learn how to install iprutils on Fedora 34.

What is iprutils

Provides a suite of utilities to manage and configure SCSI devices supported by the ipr SCSI storage device driver.

We can use yum or dnf to install iprutils on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install iprutils.

Install iprutils 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 iprutils using dnf by running the following command:

sudo dnf -y install iprutils

Install iprutils 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 iprutils using yum by running the following command:

sudo yum -y install iprutils

How To Uninstall iprutils on Fedora 34

To uninstall only the iprutils package we can use the following command:

sudo dnf remove iprutils

iprutils Package Contents on Fedora 34

/etc/bash_completion.d
/etc/bash_completion.d/iprconfig
/usr/lib/.build-id
/usr/lib/.build-id/28
/usr/lib/.build-id/28/3f5e1e9de069edf5d58a666c2919291935a964
/usr/lib/.build-id/4f
/usr/lib/.build-id/4f/ff81fb0c86be487c9dc8422cffbe322c9da80e
/usr/lib/.build-id/55
/usr/lib/.build-id/55/950c00acf6b8f8a8d7bd07f9d9cfb77ff920a4
/usr/lib/.build-id/81
/usr/lib/.build-id/81/6aea5b42efd8277f844c1bcbb4233aa6fdd0bb
/usr/lib/.build-id/b4
/usr/lib/.build-id/b4/dd50e2c08155df851bc74b6e8ea08552befb21
/usr/lib/systemd/system/iprdump.service
/usr/lib/systemd/system/iprinit.service
/usr/lib/systemd/system/iprupdate.service
/usr/lib/systemd/system/iprutils.target
/usr/lib/udev/rules.d/90-iprutils.rules
/usr/sbin/iprconfig
/usr/sbin/iprdbg
/usr/sbin/iprdump
/usr/sbin/iprinit
/usr/sbin/iprsos
/usr/sbin/iprupdate
/usr/share/doc/iprutils
/usr/share/doc/iprutils/README
/usr/share/licenses/iprutils
/usr/share/licenses/iprutils/LICENSE
/usr/share/man/man8/iprconfig.8.gz
/usr/share/man/man8/iprdbg.8.gz
/usr/share/man/man8/iprdump.8.gz
/usr/share/man/man8/iprinit.8.gz
/usr/share/man/man8/iprsos.8.gz
/usr/share/man/man8/iprupdate.8.gz

References

Summary

In this tutorial we learn how to install iprutils on Fedora 34 using yum and dnf.