How To Install gtkmm30 on CentOS 8

gtkmm30 is C++ interface for the GTK+ library C++ interface for the GTK+ library

Introduction

In this tutorial we learn how to install gtkmm30 on CentOS 8.

What is gtkmm30

gtkmm is the official C++ interface for the popular GUI library GTK+. Highlights include type safe callbacks, and a comprehensive set of widgets that are easily extensible via inheritance. gtkmm30 3.22.2 3.el8 x86_64 1.0 M gtkmm30-3.22.2-3.el8.src.rpm appstream C++ interface for the GTK+ library http LGPLv2+ gtkmm is the official C++ interface for the popular GUI library GTK+. Highlights include type safe callbacks, and a comprehensive set of widgets that are easily extensible via inheritance.

We can use yum or dnf to install gtkmm30 on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install gtkmm30.

Install gtkmm30 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 gtkmm30 using dnf by running the following command:

sudo dnf -y install gtkmm30

Install gtkmm30 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 gtkmm30 using yum by running the following command:

sudo yum -y install gtkmm30

How To Uninstall gtkmm30 on CentOS 8

To uninstall only the gtkmm30 package we can use the following command:

sudo dnf remove gtkmm30

gtkmm30 Package Contents on CentOS 8

/usr/lib/.build-id
/usr/lib/.build-id/74
/usr/lib/.build-id/74/5b893e94bbce720e6f1f5adbc881586ce926bb
/usr/lib/.build-id/f3
/usr/lib/.build-id/f3/4f45dc40ae265f8561ed32e40feb78baf80433
/usr/lib64/libgdkmm-3.0.so.1
/usr/lib64/libgdkmm-3.0.so.1.1.0
/usr/lib64/libgtkmm-3.0.so.1
/usr/lib64/libgtkmm-3.0.so.1.1.0
/usr/share/doc/gtkmm30
/usr/share/doc/gtkmm30/AUTHORS
/usr/share/doc/gtkmm30/NEWS
/usr/share/doc/gtkmm30/README
/usr/share/licenses/gtkmm30
/usr/share/licenses/gtkmm30/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/9c
/usr/lib/.build-id/9c/b5ced82a2883dd8188a5b5eb54e0580d9d5599
/usr/lib/.build-id/ff
/usr/lib/.build-id/ff/d0d92f9d1b9cb37dd06c2a819e082502ed074e
/usr/lib/libgdkmm-3.0.so.1
/usr/lib/libgdkmm-3.0.so.1.1.0
/usr/lib/libgtkmm-3.0.so.1
/usr/lib/libgtkmm-3.0.so.1.1.0
/usr/share/doc/gtkmm30
/usr/share/doc/gtkmm30/AUTHORS
/usr/share/doc/gtkmm30/NEWS
/usr/share/doc/gtkmm30/README
/usr/share/licenses/gtkmm30
/usr/share/licenses/gtkmm30/COPYING

References

Summary

In this tutorial we learn how to install gtkmm30 on CentOS 8 using yum and dnf.