How To Install libgee-devel on Rocky Linux 8
Introduction
In this tutorial we learn how to install libgee-devel
on Rocky Linux 8.
What is libgee-devel
The libgee-devel package contains libraries and header files for developing applications that use libgee.
We can use yum
or dnf
to install libgee-devel
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libgee-devel.
Install libgee-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 libgee-devel
using dnf
by running the following command:
sudo dnf -y install libgee-devel
Install libgee-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 libgee-devel
using yum
by running the following command:
sudo yum -y install libgee-devel
How To Uninstall libgee-devel on Rocky Linux 8
To uninstall only the libgee-devel
package we can use the following command:
sudo dnf remove libgee-devel
libgee-devel Package Contents on Rocky Linux 8
/usr/include/gee-0.8
/usr/include/gee-0.8/gee.h
/usr/lib/libgee-0.8.so
/usr/lib/pkgconfig/gee-0.8.pc
/usr/share/gir-1.0
/usr/share/gir-1.0/Gee-0.8.gir
/usr/share/vala
/usr/share/vala/vapi
/usr/share/vala/vapi/gee-0.8.vapi
/usr/include/gee-0.8
/usr/include/gee-0.8/gee.h
/usr/lib64/libgee-0.8.so
/usr/lib64/pkgconfig/gee-0.8.pc
/usr/share/gir-1.0
/usr/share/gir-1.0/Gee-0.8.gir
/usr/share/vala
/usr/share/vala/vapi
/usr/share/vala/vapi/gee-0.8.vapi
References
Summary
In this tutorial we learn how to install libgee-devel
on Rocky Linux 8 using yum and dnf.