Introduction
In this tutorial we learn how to install bind-pkcs11-libs
on CentOS 8.
What is bind-pkcs11-libs
This is a set of BIND libraries (dns, isc) compiled with native PKCS#11 functionality. bind-pkcs11-libs 32 9.11.26 4.el8_4 x86_64 1.1 M bind-9.11.26-4.el8_4.src.rpm appstream Bind libraries compiled with native PKCS#11 https MPLv2.0 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 CentOS 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 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 bind-pkcs11-libs
using dnf
by running the following command:
sudo dnf -y install bind-pkcs11-libs
Install bind-pkcs11-libs 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 bind-pkcs11-libs
using yum
by running the following command:
sudo yum -y install bind-pkcs11-libs
How To Uninstall bind-pkcs11-libs on CentOS 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 CentOS 8
/usr/lib/.build-id
/usr/lib/.build-id/01
/usr/lib/.build-id/01/4b58ca1f58614f4eaa8cb4598986e7d4365deb
/usr/lib/.build-id/b9
/usr/lib/.build-id/b9/897146efc870c92fa54d7af3ee09c791f74b6e
/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/49
/usr/lib/.build-id/49/16f01e09205293adc1ad672519ef2514430286
/usr/lib/.build-id/d8
/usr/lib/.build-id/d8/2151497ff5e685a804aad8db10c9b803812a1a
/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
/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
/usr/lib/.build-id
/usr/lib/.build-id/a2
/usr/lib/.build-id/a2/f67d04a46bbf124e2849463b04020bbd9055b3
/usr/lib/.build-id/ef
/usr/lib/.build-id/ef/1ca79473fead46f9ac210dd8eb277a4fc770c6
/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
References
- [bind-pkcs11-libs website](https://www.isc.org/downloads/bind/
https://www.isc.org/downloads/bind/)
Summary
In this tutorial we learn how to install bind-pkcs11-libs
on CentOS 8 using yum and dnf.