How To Install memkind-devel on CentOS 7

In this tutorial we learn how to install memkind-devel on CentOS 7. memkind-devel is Memkind User Extensible Heap Manager development lib and tools

Introduction

In this tutorial we learn how to install memkind-devel on CentOS 7.

What is memkind-devel

Install header files and development aids to link memkind library into applications. The memkind library is an user extensible heap manager built on top of jemalloc which enables control of memory characteristics and heap partitioning on different kinds of memory. This software is being made available for early evaluation. The memkind library should be considered pre-alpha bugs may exist and the interfaces may be subject to change prior to alpha release. Feedback on design or implementation is greatly appreciated.

We can use yum or dnf to install memkind-devel on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install memkind-devel.

Install memkind-devel on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install memkind-devel using yum by running the following command:

sudo yum -y install memkind-devel

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

sudo dnf -y install memkind-devel

How To Uninstall memkind-devel on CentOS 7

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

sudo dnf remove memkind-devel

References

Summary

In this tutorial we learn how to install memkind-devel on CentOS 7 using yum and dnf.