How To Install bind-pkcs11-libs on Rocky Linux 8

In this tutorial we learn how to install bind-pkcs11-libs on Rocky Linux 8. bind-pkcs11-libs is Bind libraries compiled with native PKCS#11

Introduction

In this tutorial we learn how to install bind-pkcs11-libs on Rocky Linux 8.

What is bind-pkcs11-libs

This is a set of BIND libraries (dns, isc) compiled with native PKCS#11 functionality.

We can use yum or dnf to install bind-pkcs11-libs on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install bind-pkcs11-libs.

Install bind-pkcs11-libs on Rocky Linux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install bind-pkcs11-libs using dnf by running the following command:

sudo dnf -y install bind-pkcs11-libs

Install bind-pkcs11-libs on Rocky Linux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install bind-pkcs11-libs using yum by running the following command:

sudo yum -y install bind-pkcs11-libs

How To Uninstall bind-pkcs11-libs on Rocky Linux 8

To uninstall only the bind-pkcs11-libs package we can use the following command:

sudo dnf remove bind-pkcs11-libs

bind-pkcs11-libs Package Contents on Rocky Linux 8

/usr/lib/.build-id
/usr/lib/.build-id/7d
/usr/lib/.build-id/7d/d72e0d66292fbf7f2b45de66593801f1cbb25d
/usr/lib/.build-id/af
/usr/lib/.build-id/af/1533961d42c551ac2dcea3a7e45cb02bacae05
/usr/lib/libdns-pkcs11.so.1112
/usr/lib/libdns-pkcs11.so.1112.0.2
/usr/lib/libisc-pkcs11.so.1107
/usr/lib/libisc-pkcs11.so.1107.0.4
/usr/lib/.build-id
/usr/lib/.build-id/95
/usr/lib/.build-id/95/625eca8dd98d3b96a445d497d625fc95b1b326
/usr/lib/.build-id/ee
/usr/lib/.build-id/ee/451adfe43a84ab1f7170ac7ef0eaf40d61f53e
/usr/lib64/libdns-pkcs11.so.1112
/usr/lib64/libdns-pkcs11.so.1112.0.2
/usr/lib64/libisc-pkcs11.so.1107
/usr/lib64/libisc-pkcs11.so.1107.0.4

References

Summary

In this tutorial we learn how to install bind-pkcs11-libs on Rocky Linux 8 using yum and dnf.