How To Install intel-cmt-cat on AlmaLinux 8

In this tutorial we learn how to install intel-cmt-cat in AlmaLinux 8. intel-cmt-cat is Provides command line interface to CMT, MBM, CAT, CDP and MBA technologies

Introduction

In this tutorial we learn how to install intel-cmt-cat on AlmaLinux 8.

What is intel-cmt-cat

This software package provides basic support for Cache Monitoring Technology (CMT), Memory Bandwidth Monitoring (MBM), Cache Allocation Technology (CAT), Memory Bandwidth Allocation (MBA), and Code Data Prioratization (CDP). CMT, MBM and CAT are configured using Model Specific Registers (MSRs) to measure last level cache occupancy, set up the class of service masks and manage the association of the cores/logical threads to a class of service. The software executes in user space, and access to the MSRs is obtained through a standard Linux* interface. The virtual file system provides an interface to read and write the MSR registers but it requires root privileges.

We can use yum or dnf to install intel-cmt-cat on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install intel-cmt-cat.

Install intel-cmt-cat on AlmaLinux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install intel-cmt-cat using dnf by running the following command:

sudo dnf -y install intel-cmt-cat

Install intel-cmt-cat on AlmaLinux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install intel-cmt-cat using yum by running the following command:

sudo yum -y install intel-cmt-cat

How To Uninstall intel-cmt-cat on AlmaLinux 8

To uninstall only the intel-cmt-cat package we can use the following command:

sudo dnf remove intel-cmt-cat

References

Summary

In this tutorial we learn how to install intel-cmt-cat on AlmaLinux 8 using yum and dnf.