How To Install exempi on CentOS 8
Introduction
In this tutorial we learn how to install exempi
on CentOS 8.
What is exempi
Exempi provides a library for easy parsing of XMP metadata. It is a port of Adobe XMP SDK to work on UNIX and to be build with GNU automake. It includes XMPCore and XMPFiles. exempi 2.4.5 2.el8 x86_64 641 k exempi-2.4.5-2.el8.src.rpm appstream Library for easy parsing of XMP metadata http BSD Exempi provides a library for easy parsing of XMP metadata. It is a port of Adobe XMP SDK to work on UNIX and to be build with GNU automake. It includes XMPCore and XMPFiles.
We can use yum
or dnf
to install exempi
on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install exempi.
Install exempi on CentOS 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install exempi
using dnf
by running the following command:
sudo dnf -y install exempi
Install exempi on CentOS 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
After updating yum database, We can install exempi
using yum
by running the following command:
sudo yum -y install exempi
How To Uninstall exempi on CentOS 8
To uninstall only the exempi
package we can use the following command:
sudo dnf remove exempi
exempi Package Contents on CentOS 8
/usr/bin/exempi
/usr/lib/.build-id
/usr/lib/.build-id/2b
/usr/lib/.build-id/2b/e114c1df4c8fed4a714c907f6b15d5e4093af3
/usr/lib/.build-id/4b
/usr/lib/.build-id/4b/6a00e6fa4dec66dbc18a1d21eb4c25a692374c
/usr/lib64/libexempi.so.3
/usr/lib64/libexempi.so.3.4.5
/usr/share/doc/exempi
/usr/share/doc/exempi/AUTHORS
/usr/share/doc/exempi/COPYING
/usr/share/doc/exempi/ChangeLog
/usr/share/doc/exempi/README
/usr/share/man/man1/exempi.1.gz
/usr/bin/exempi
/usr/lib/.build-id
/usr/lib/.build-id/57
/usr/lib/.build-id/57/051256b054e8d6f811401d33fa8315f34a4c6e
/usr/lib/.build-id/c9
/usr/lib/.build-id/c9/95e95ec5ad1e6fe987da32e74eb7b8a844e4e1
/usr/lib/libexempi.so.3
/usr/lib/libexempi.so.3.4.5
/usr/share/doc/exempi
/usr/share/doc/exempi/AUTHORS
/usr/share/doc/exempi/COPYING
/usr/share/doc/exempi/ChangeLog
/usr/share/doc/exempi/README
/usr/share/man/man1/exempi.1.gz
References
- [exempi website](http://libopenraw.freedesktop.org/wiki/Exempi http://libopenraw.freedesktop.org/wiki/Exempi)
Summary
In this tutorial we learn how to install exempi
on CentOS 8 using yum and dnf.