How To Install libccd-devel on Rocky Linux 8
Introduction
In this tutorial we learn how to install libccd-devel
on Rocky Linux 8.
What is libccd-devel
The libccd-devel package contains libraries and header files for developing applications that use libccd.
We can use yum
or dnf
to install libccd-devel
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libccd-devel.
Install libccd-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 libccd-devel
using dnf
by running the following command:
sudo dnf -y install libccd-devel
Install libccd-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 libccd-devel
using yum
by running the following command:
sudo yum -y install libccd-devel
How To Uninstall libccd-devel on Rocky Linux 8
To uninstall only the libccd-devel
package we can use the following command:
sudo dnf remove libccd-devel
libccd-devel Package Contents on Rocky Linux 8
/usr/include/ccd
/usr/include/ccd/ccd.h
/usr/include/ccd/ccd_export.h
/usr/include/ccd/compiler.h
/usr/include/ccd/config.h
/usr/include/ccd/quat.h
/usr/include/ccd/vec3.h
/usr/lib64/ccd
/usr/lib64/ccd/ccd-config-version.cmake
/usr/lib64/ccd/ccd-config.cmake
/usr/lib64/ccd/ccd-targets-release.cmake
/usr/lib64/ccd/ccd-targets.cmake
/usr/lib64/libccd.so
/usr/lib64/pkgconfig/ccd.pc
References
Summary
In this tutorial we learn how to install libccd-devel
on Rocky Linux 8 using yum and dnf.