How To Install libgexiv2 on AlmaLinux 8
Introduction
In this tutorial we learn how to install libgexiv2
on AlmaLinux 8.
What is libgexiv2
libgexiv2 is a GObject-based wrapper around the Exiv2 library. It makes the basic features of Exiv2 available to GNOME applications.
We can use yum
or dnf
to install libgexiv2
on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libgexiv2.
Install libgexiv2 on AlmaLinux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install libgexiv2
using dnf
by running the following command:
sudo dnf -y install libgexiv2
Install libgexiv2 on AlmaLinux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install libgexiv2
using yum
by running the following command:
sudo yum -y install libgexiv2
How To Uninstall libgexiv2 on AlmaLinux 8
To uninstall only the libgexiv2
package we can use the following command:
sudo dnf remove libgexiv2
References
Summary
In this tutorial we learn how to install libgexiv2
on AlmaLinux 8 using yum and dnf.