How To Install glibmm24 on CentOS 8
Introduction
In this tutorial we learn how to install glibmm24
on CentOS 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. glibmm24 2.56.0 2.el8 x86_64 648 k glibmm24-2.56.0-2.el8.src.rpm appstream C++ interface for the GLib library http LGPLv2+ 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 CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install glibmm24.
Install glibmm24 on CentOS 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install glibmm24
using dnf
by running the following command:
sudo dnf -y install glibmm24
Install glibmm24 on CentOS 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
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 CentOS 8
To uninstall only the glibmm24
package we can use the following command:
sudo dnf remove glibmm24
glibmm24 Package Contents on CentOS 8
/usr/lib/.build-id
/usr/lib/.build-id/4c
/usr/lib/.build-id/4c/7ad57151fceacc4f784dcf952f83b9a3729b66
/usr/lib/.build-id/6b
/usr/lib/.build-id/6b/0dd34aa0917bf7ff19db2ccf10271cd9c5e788
/usr/lib/.build-id/7e
/usr/lib/.build-id/7e/150e4dfb03b609d9f2bf9c163d3acc5c54cf24
/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
/usr/lib/.build-id
/usr/lib/.build-id/5e
/usr/lib/.build-id/5e/f20a4dde60ce00f903ea262531bffc6983730f
/usr/lib/.build-id/6f
/usr/lib/.build-id/6f/6cc9a0fe28d1696aef322ea263d5892e9b4f2c
/usr/lib/.build-id/b9
/usr/lib/.build-id/b9/471bb10897f19b3edc0a6d8aa279d46981ae66
/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
References
- [glibmm24 website](http://www.gtkmm.org/ http://www.gtkmm.org/)
Summary
In this tutorial we learn how to install glibmm24
on CentOS 8 using yum and dnf.