How To Install libitm-devel on Rocky Linux 8

In this tutorial we learn how to install libitm-devel on Rocky Linux 8. libitm-devel is The GNU Transactional Memory support

Introduction

In this tutorial we learn how to install libitm-devel on Rocky Linux 8.

What is libitm-devel

This package contains headers and support files for the GNU Transactional Memory library.

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

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

sudo dnf -y install libitm-devel

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

sudo yum -y install libitm-devel

How To Uninstall libitm-devel on Rocky Linux 8

To uninstall only the libitm-devel package we can use the following command:

sudo dnf remove libitm-devel

libitm-devel Package Contents on Rocky Linux 8

/usr/lib/gcc
/usr/lib/gcc/i686-redhat-linux
/usr/lib/gcc/i686-redhat-linux/8
/usr/lib/gcc/i686-redhat-linux/8/include
/usr/lib/gcc/i686-redhat-linux/8/libitm.so
/usr/share/doc/libitm-devel
/usr/share/doc/libitm-devel/ChangeLog.libitm.bz2
/usr/lib/gcc
/usr/lib/gcc/x86_64-redhat-linux
/usr/lib/gcc/x86_64-redhat-linux/8
/usr/lib/gcc/x86_64-redhat-linux/8/include
/usr/lib/gcc/x86_64-redhat-linux/8/libitm.so
/usr/share/doc/libitm-devel
/usr/share/doc/libitm-devel/ChangeLog.libitm.bz2

References

Summary

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