How To Install libglade2.x86_64 on Amazon Linux 2

In this tutorial we learn how to install libglade2.x86_64 in Amazon Linux 2. libglade2.x86_64 is The libglade library for loading user interfaces

Introduction

In this tutorial we learn how to install libglade2.x86_64 on Amazon Linux 2.

What is libglade2.x86_64

Libglade is a small library that allows a program to load its user interface from am XML description at runtime. Libglade uses the XML file format used by the GLADE user interface builder GLADE, so libglade acts as an alternative to GLADE’s code generation approach. Libglade also provides a simple interface for connecting handlers to the various signals in the interface (on platforms where the gmodule library works correctly, it is possible to connect all the handlers with a single function call). Once the interface has been instantiated, libglade gives no overhead, so other than the short initial interface loading time, there is no performance tradeoff.

We can use yum to install libglade2.x86_64 on Amazon Linux 2. In this tutorial we discuss both methods but you only need to choose one of method to install libglade2.x86_64.

Install libglade2.x86_64 on Amazon Linux 2 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install libglade2.x86_64 using yum by running the following command:

sudo yum -y install libglade2.x86_64

How To Uninstall libglade2.x86_64 on Amazon Linux 2

To uninstall only the libglade2.x86_64 package we can use the following command:

sudo yum remove libglade2.x86_64

libglade2.x86_64 Package Contents on Amazon Linux 2

/usr/lib64/libglade
/usr/lib64/libglade-2.0.so.0
/usr/lib64/libglade-2.0.so.0.0.7
/usr/lib64/libglade/2.0
/usr/share/doc/libglade2-2.6.4
/usr/share/doc/libglade2-2.6.4/AUTHORS
/usr/share/doc/libglade2-2.6.4/COPYING
/usr/share/doc/libglade2-2.6.4/NEWS
/usr/share/doc/libglade2-2.6.4/README
/usr/share/xml/libglade
/usr/share/xml/libglade/glade-2.0.dtd

References

Summary

In this tutorial we learn how to install libglade2.x86_64 on Amazon Linux 2 using yum.