How To Install libvmem-devel.x86_64 on Amazon Linux 2
Introduction
In this tutorial we learn how to install libvmem-devel.x86_64 on Amazon Linux 2.
What is libvmem-devel.x86_64
The libvmem library turns a pool of persistent memory into a volatile memory pool, similar to the system heap but kept separate and with its own malloc-style API. This sub-package contains libraries and header files for developing applications that want to make use of libvmem.
We can use yum to install libvmem-devel.x86_64 on Amazon Linux 2. In this tutorial we discuss both methods but you only need to choose one of method to install libvmem-devel.x86_64.
Install libvmem-devel.x86_64 on Amazon Linux 2 Using yum
Update yum database with yum using the following command.
sudo yum makecache --refresh
After updating yum database, We can install libvmem-devel.x86_64 using yum by running the following command:
sudo yum -y install libvmem-devel.x86_64
How To Uninstall libvmem-devel.x86_64 on Amazon Linux 2
To uninstall only the libvmem-devel.x86_64 package we can use the following command:
sudo yum remove libvmem-devel.x86_64
libvmem-devel.x86_64 Package Contents on Amazon Linux 2
/usr/include/libvmem.h
/usr/lib64/libvmem.so
/usr/lib64/pkgconfig/libvmem.pc
/usr/share/doc/libvmem-devel-1.3
/usr/share/doc/libvmem-devel-1.3/CONTRIBUTING.md
/usr/share/doc/libvmem-devel-1.3/ChangeLog
/usr/share/doc/libvmem-devel-1.3/README.md
/usr/share/licenses/libvmem-devel-1.3
/usr/share/licenses/libvmem-devel-1.3/LICENSE
/usr/share/man/man3/libvmem.3.gz
References
Summary
In this tutorial we learn how to install libvmem-devel.x86_64 on Amazon Linux 2 using yum.