How To Install levmar-devel on Rocky Linux 8
Introduction
In this tutorial we learn how to install levmar-devel
on Rocky Linux 8.
What is levmar-devel
Development files for the levmar library, and demo program.
We can use yum
or dnf
to install levmar-devel
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install levmar-devel.
Install levmar-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 levmar-devel
using dnf
by running the following command:
sudo dnf -y install levmar-devel
Install levmar-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 levmar-devel
using yum
by running the following command:
sudo yum -y install levmar-devel
How To Uninstall levmar-devel on Rocky Linux 8
To uninstall only the levmar-devel
package we can use the following command:
sudo dnf remove levmar-devel
levmar-devel Package Contents on Rocky Linux 8
/usr/bin/lmdemo
/usr/include/levmar.h
/usr/lib/.build-id
/usr/lib/.build-id/b5
/usr/lib/.build-id/b5/078db91b1fc635bd375bbbea54d73552706416
/usr/lib64/liblevmar.so
References
Summary
In this tutorial we learn how to install levmar-devel
on Rocky Linux 8 using yum and dnf.