How To Install pinentry on CentOS 8

pinentry is Collection of simple PIN or passphrase entry dialogs

Introduction

In this tutorial we learn how to install pinentry on CentOS 8.

What is pinentry

Pinentry is a collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol as described by the aegypten project; see http This package contains the curses (text) based version of the PIN entry dialog.

We can use yum or dnf to install pinentry on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install pinentry.

Install pinentry 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 pinentry using dnf by running the following command:

sudo dnf -y install pinentry

Install pinentry 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 pinentry using yum by running the following command:

sudo yum -y install pinentry

How To Uninstall pinentry on CentOS 8

To uninstall only the pinentry package we can use the following command:

sudo dnf remove pinentry

pinentry Package Contents on CentOS 8

/usr/bin/pinentry
/usr/bin/pinentry-curses
/usr/lib/.build-id
/usr/lib/.build-id/0f
/usr/lib/.build-id/0f/7b4a7a673190f6906641a4409832a568cfa74a
/usr/share/doc/pinentry
/usr/share/doc/pinentry/AUTHORS
/usr/share/doc/pinentry/ChangeLog
/usr/share/doc/pinentry/NEWS
/usr/share/doc/pinentry/README
/usr/share/doc/pinentry/THANKS
/usr/share/doc/pinentry/TODO
/usr/share/info/pinentry.info.gz
/usr/share/licenses/pinentry
/usr/share/licenses/pinentry/COPYING

References

Summary

In this tutorial we learn how to install pinentry on CentOS 8 using yum and dnf.