How To Install libgsystem on Fedora 34
Introduction
In this tutorial we learn how to install libgsystem
on Fedora 34.
What is libgsystem
LibGSystem is a GIO-based library targeted primarily for use by operating system components. libgsystem 2015.2 13.fc34 x86_64 47 k libgsystem-2015.2-13.fc34.src.rpm fedora GIO-based library with Unix/Linux specific API https LGPLv2+ LibGSystem is a GIO-based library targeted primarily for use by operating system components.
We can use yum
or dnf
to install libgsystem
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libgsystem.
Install libgsystem 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 libgsystem
using dnf
by running the following command:
sudo dnf -y install libgsystem
Install libgsystem 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 libgsystem
using yum
by running the following command:
sudo yum -y install libgsystem
How To Uninstall libgsystem on Fedora 34
To uninstall only the libgsystem
package we can use the following command:
sudo dnf remove libgsystem
libgsystem Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/6c
/usr/lib/.build-id/6c/8827502c107f557918d7761255ac7789f0f579
/usr/lib64/girepository-1.0/GSystem-1.0.typelib
/usr/lib64/libgsystem.so.0
/usr/lib64/libgsystem.so.0.0.0
/usr/share/doc/libgsystem
/usr/share/doc/libgsystem/COPYING
/usr/share/doc/libgsystem/README
/usr/lib/.build-id
/usr/lib/.build-id/97
/usr/lib/.build-id/97/3be7b57dc45398e6fa559c125799a4619ead9e
/usr/lib/girepository-1.0/GSystem-1.0.typelib
/usr/lib/libgsystem.so.0
/usr/lib/libgsystem.so.0.0.0
/usr/share/doc/libgsystem
/usr/share/doc/libgsystem/COPYING
/usr/share/doc/libgsystem/README
References
- [libgsystem website](https://wiki.gnome.org/Projects/LibGSystem https://wiki.gnome.org/Projects/LibGSystem)
Summary
In this tutorial we learn how to install libgsystem
on Fedora 34 using yum and dnf.