How To Install intel-cmt-cat on CentOS 7

In this tutorial we learn how to install intel-cmt-cat on CentOS 7. intel-cmt-cat is Provides command line interface to CMT, MBM, CAT, CDP and MBA

Introduction

In this tutorial we learn how to install intel-cmt-cat on CentOS 7.

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. 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 CentOS 7. 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 CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install intel-cmt-cat

Install intel-cmt-cat on CentOS 7 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 intel-cmt-cat using dnf by running the following command:

sudo dnf -y install intel-cmt-cat

How To Uninstall intel-cmt-cat on CentOS 7

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 CentOS 7 using yum and dnf.