How To Install libglade2 on Fedora 34
Introduction
In this tutorial we learn how to install libglade2
on Fedora 34.
What is libglade2
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. libglade2 2.6.4 25.fc34 x86_64 64 k libglade2-2.6.4-25.fc34.src.rpm fedora The libglade library for loading user interfaces http LGPLv2+ 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
or dnf
to install libglade2
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libglade2.
Install libglade2 on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install libglade2
using dnf
by running the following command:
sudo dnf -y install libglade2
Install libglade2 on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install libglade2
using yum
by running the following command:
sudo yum -y install libglade2
How To Uninstall libglade2 on Fedora 34
To uninstall only the libglade2
package we can use the following command:
sudo dnf remove libglade2
libglade2 Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/3e
/usr/lib/.build-id/3e/e24e00e21186dc1aad1cb1b508b5b61bef9d45
/usr/lib/libglade
/usr/lib/libglade-2.0.so.0
/usr/lib/libglade-2.0.so.0.0.7
/usr/lib/libglade/2.0
/usr/share/doc/libglade2
/usr/share/doc/libglade2/AUTHORS
/usr/share/doc/libglade2/NEWS
/usr/share/doc/libglade2/README
/usr/share/licenses/libglade2
/usr/share/licenses/libglade2/COPYING
/usr/share/xml/libglade
/usr/share/xml/libglade/glade-2.0.dtd
/usr/lib/.build-id
/usr/lib/.build-id/6f
/usr/lib/.build-id/6f/f226a319ab61c8f0e5a3ce21a2206b1e8b2ea0
/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
/usr/share/doc/libglade2/AUTHORS
/usr/share/doc/libglade2/NEWS
/usr/share/doc/libglade2/README
/usr/share/licenses/libglade2
/usr/share/licenses/libglade2/COPYING
/usr/share/xml/libglade
/usr/share/xml/libglade/glade-2.0.dtd
References
- [libglade2 website](http://www.gnome.org http://www.gnome.org)
Summary
In this tutorial we learn how to install libglade2
on Fedora 34 using yum and dnf.