How To Install gtkmm30 on Rocky Linux 8

In this tutorial we learn how to install gtkmm30 on Rocky Linux 8. gtkmm30 is C++ interface for the GTK+ library

Introduction

In this tutorial we learn how to install gtkmm30 on Rocky Linux 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.

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

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

sudo dnf -y install gtkmm30

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

sudo yum -y install gtkmm30

How To Uninstall gtkmm30 on Rocky Linux 8

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

sudo dnf remove gtkmm30

gtkmm30 Package Contents on Rocky Linux 8

/usr/lib/.build-id
/usr/lib/.build-id/02
/usr/lib/.build-id/02/1fd856d9e156f558347c2a521564ef27bb6b2b
/usr/lib/.build-id/4c
/usr/lib/.build-id/4c/60bd3780ad5cfb08c1a1bf23959802bc713c18
/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
/usr/lib/.build-id
/usr/lib/.build-id/18
/usr/lib/.build-id/18/1dc4d9f2e247347f462799866d77d3144d9dca
/usr/lib/.build-id/b0
/usr/lib/.build-id/b0/767ea03ab7ab37de3c20f5c14f80e08d537378
/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

References

Summary

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