How To Install glibmm24 on Rocky Linux 8
Introduction
In this tutorial we learn how to install glibmm24
on Rocky Linux 8.
What is glibmm24
glibmm is the official C++ interface for the popular cross-platform library GLib. It provides non-UI API that is not available in standard C++ and makes it possible for gtkmm to wrap GObject-based APIs.
We can use yum
or dnf
to install glibmm24
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install glibmm24.
Install glibmm24 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 glibmm24
using dnf
by running the following command:
sudo dnf -y install glibmm24
Install glibmm24 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 glibmm24
using yum
by running the following command:
sudo yum -y install glibmm24
How To Uninstall glibmm24 on Rocky Linux 8
To uninstall only the glibmm24
package we can use the following command:
sudo dnf remove glibmm24
glibmm24 Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/14
/usr/lib/.build-id/14/a838149a90ec16cef7162531e2fb8dfba9bab7
/usr/lib/.build-id/88
/usr/lib/.build-id/88/f6a3ef074021a7c373693226ea625528c131eb
/usr/lib/.build-id/fe
/usr/lib/.build-id/fe/e56022f81536eadd18cbcd64f2f50857c73941
/usr/lib/libgiomm-2.4.so.1
/usr/lib/libgiomm-2.4.so.1.3.0
/usr/lib/libglibmm-2.4.so.1
/usr/lib/libglibmm-2.4.so.1.3.0
/usr/lib/libglibmm_generate_extra_defs-2.4.so.1
/usr/lib/libglibmm_generate_extra_defs-2.4.so.1.3.0
/usr/share/doc/glibmm24
/usr/share/doc/glibmm24/AUTHORS
/usr/share/doc/glibmm24/NEWS
/usr/share/doc/glibmm24/README
/usr/share/licenses/glibmm24
/usr/share/licenses/glibmm24/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/76
/usr/lib/.build-id/76/e4158d34464d7e90a97bce8c95b39c4b7f34e8
/usr/lib/.build-id/a1
/usr/lib/.build-id/a1/943013b5b4c1db015d534c2777bc56cad0c828
/usr/lib/.build-id/a9
/usr/lib/.build-id/a9/61ba04d3baa25efaa657b8a3be3f6ad0a65c5a
/usr/lib64/libgiomm-2.4.so.1
/usr/lib64/libgiomm-2.4.so.1.3.0
/usr/lib64/libglibmm-2.4.so.1
/usr/lib64/libglibmm-2.4.so.1.3.0
/usr/lib64/libglibmm_generate_extra_defs-2.4.so.1
/usr/lib64/libglibmm_generate_extra_defs-2.4.so.1.3.0
/usr/share/doc/glibmm24
/usr/share/doc/glibmm24/AUTHORS
/usr/share/doc/glibmm24/NEWS
/usr/share/doc/glibmm24/README
/usr/share/licenses/glibmm24
/usr/share/licenses/glibmm24/COPYING
References
Summary
In this tutorial we learn how to install glibmm24
on Rocky Linux 8 using yum and dnf.