How To Install gpgme on Fedora 36
Introduction
In this tutorial we learn how to install gpgme
on Fedora 36.
What is gpgme
GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG easier for applications. It provides a high-level crypto API for encryption, decryption, signing, signature verification and key management.
We can use yum
or dnf
to install gpgme
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install gpgme.
Install gpgme on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install gpgme
using dnf
by running the following command:
sudo dnf -y install gpgme
Install gpgme on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install gpgme
using yum
by running the following command:
sudo yum -y install gpgme
How To Uninstall gpgme on Fedora 36
To uninstall only the gpgme
package we can use the following command:
sudo dnf remove gpgme
gpgme Package Contents on Fedora 36
/usr/bin/gpgme-json
/usr/lib/.build-id
/usr/lib/.build-id/05
/usr/lib/.build-id/05/3c015182658dc12f6642b0c71601f0ef3d7670
/usr/lib/.build-id/81
/usr/lib/.build-id/81/3c21a67d5ec0eb89073ce9a6c40c871dd4058c
/usr/lib64/libgpgme.so.11
/usr/lib64/libgpgme.so.11.24.1
/usr/share/doc/gpgme
/usr/share/doc/gpgme/AUTHORS
/usr/share/doc/gpgme/NEWS
/usr/share/doc/gpgme/README
/usr/share/licenses/gpgme
/usr/share/licenses/gpgme/COPYING
/usr/share/licenses/gpgme/COPYING.LESSER
References
Summary
In this tutorial we learn how to install gpgme
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).