How To Install integritysetup on Rocky Linux 8

In this tutorial we learn how to install integritysetup on Rocky Linux 8. integritysetup is A utility for setting up dm-integrity volumes

Introduction

In this tutorial we learn how to install integritysetup on Rocky Linux 8.

What is integritysetup

The integritysetup package contains a utility for setting up disk integrity protection using dm-integrity kernel module.

We can use yum or dnf to install integritysetup on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install integritysetup.

Install integritysetup on Rocky Linux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install integritysetup using dnf by running the following command:

sudo dnf -y install integritysetup

Install integritysetup on Rocky Linux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install integritysetup using yum by running the following command:

sudo yum -y install integritysetup

How To Uninstall integritysetup on Rocky Linux 8

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

sudo dnf remove integritysetup

integritysetup Package Contents on Rocky Linux 8

/usr/lib/.build-id
/usr/lib/.build-id/23
/usr/lib/.build-id/23/ff4598e6e8357da168ae1e9ef94c38d719b75b
/usr/sbin/integritysetup
/usr/share/licenses/integritysetup
/usr/share/licenses/integritysetup/COPYING
/usr/share/man/man8/integritysetup.8.gz

References

Summary

In this tutorial we learn how to install integritysetup on Rocky Linux 8 using yum and dnf.