How To Install libvma on AlmaLinux 8
Introduction
In this tutorial we learn how to install libvma on AlmaLinux 8.
What is libvma
libvma is a LD_PRELOAD-able library that boosts performance of TCP and UDP traffic. It allows application written over standard socket API to handle fast path data traffic from user space over Ethernet and/or Infiniband with full network stack bypass and get better throughput, latency and packets/sec rate. No application binary change is required for that. libvma is supported by RDMA capable devices that support “verbs” IBV_QPT_RAW_PACKET QP for Ethernet and/or IBV_QPT_UD QP for IPoIB.
We can use yum or dnf to install libvma on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libvma.
Install libvma 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 libvma using dnf by running the following command:
sudo dnf -y install libvma
Install libvma 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 libvma using yum by running the following command:
sudo yum -y install libvma
How To Uninstall libvma on AlmaLinux 8
To uninstall only the libvma package we can use the following command:
sudo dnf remove libvma
References
Summary
In this tutorial we learn how to install libvma on AlmaLinux 8 using yum and dnf.