How To Install integritysetup on CentOS 8

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

Introduction

In this tutorial we learn how to install integritysetup on CentOS 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 CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install integritysetup.

Install integritysetup on CentOS 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install integritysetup

Install integritysetup on CentOS 8 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

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

sudo dnf -y install integritysetup

How To Uninstall integritysetup on CentOS 8

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

sudo dnf remove integritysetup

References

Summary

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