How To Install gnutls-utils on Rocky Linux 8

In this tutorial we learn how to install gnutls-utils on Rocky Linux 8. gnutls-utils is Command line tools for TLS protocol

Introduction

In this tutorial we learn how to install gnutls-utils on Rocky Linux 8.

What is gnutls-utils

GnuTLS is a secure communications library implementing the SSL, TLS and DTLS protocols and technologies around them. It provides a simple C language application programming interface (API) to access the secure communications protocols as well as APIs to parse and write X.509, PKCS #12, OpenPGP and other required structures. This package contains command line TLS client and server and certificate manipulation tools.

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

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

sudo dnf -y install gnutls-utils

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

sudo yum -y install gnutls-utils

How To Uninstall gnutls-utils on Rocky Linux 8

To uninstall only the gnutls-utils package we can use the following command:

sudo dnf remove gnutls-utils

gnutls-utils Package Contents on Rocky Linux 8

/usr/bin/certtool
/usr/bin/danetool
/usr/bin/gnutls-cli
/usr/bin/gnutls-cli-debug
/usr/bin/gnutls-serv
/usr/bin/ocsptool
/usr/bin/p11tool
/usr/bin/psktool
/usr/bin/srptool
/usr/bin/tpmtool
/usr/lib/.build-id
/usr/lib/.build-id/01
/usr/lib/.build-id/01/df9d7465858188f9441692495665f37f11d2ec
/usr/lib/.build-id/42
/usr/lib/.build-id/42/3e34dbd2d2130b880e4aade873748da6139569
/usr/lib/.build-id/8c
/usr/lib/.build-id/8c/e2ba1e125ec7323d2b572a9fea0e422d007fed
/usr/lib/.build-id/8d
/usr/lib/.build-id/8d/d4ba1aca183a4caecc15203467631f92c3f289
/usr/lib/.build-id/ba
/usr/lib/.build-id/ba/6f3c3b18191802b871364313d62c9a9b339f0c
/usr/lib/.build-id/da
/usr/lib/.build-id/da/0cc22db0d2ae74113a20bdeceb22353eca6f16
/usr/lib/.build-id/de
/usr/lib/.build-id/de/baac875383c15552119dbdb61b6d3aa63836a1
/usr/lib/.build-id/e6
/usr/lib/.build-id/e6/8648f8726f06a1486b9d56e1e30668dd905cfe
/usr/lib/.build-id/ef
/usr/lib/.build-id/ef/7f6a9c6e90cbb0bd22683aebec65a71d409c49
/usr/lib/.build-id/fc
/usr/lib/.build-id/fc/86bfcc4188477bdeebac6307c05cc6e418e5b1
/usr/share/doc/gnutls-utils
/usr/share/doc/gnutls-utils/certtool.cfg
/usr/share/man/man1/certtool.1.gz
/usr/share/man/man1/danetool.1.gz
/usr/share/man/man1/gnutls-cli-debug.1.gz
/usr/share/man/man1/gnutls-cli.1.gz
/usr/share/man/man1/gnutls-serv.1.gz
/usr/share/man/man1/ocsptool.1.gz
/usr/share/man/man1/p11tool.1.gz
/usr/share/man/man1/psktool.1.gz
/usr/share/man/man1/srptool.1.gz
/usr/share/man/man1/tpmtool.1.gz

References

Summary

In this tutorial we learn how to install gnutls-utils on Rocky Linux 8 using yum and dnf.