How To Install libtasn1-tools on Rocky Linux 8

In this tutorial we learn how to install libtasn1-tools on Rocky Linux 8. libtasn1-tools is Some ASN.1 tools

Introduction

In this tutorial we learn how to install libtasn1-tools on Rocky Linux 8.

What is libtasn1-tools

This package contains simple tools that can decode and encode ASN.1 data.

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

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

sudo dnf -y install libtasn1-tools

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

sudo yum -y install libtasn1-tools

How To Uninstall libtasn1-tools on Rocky Linux 8

To uninstall only the libtasn1-tools package we can use the following command:

sudo dnf remove libtasn1-tools

libtasn1-tools Package Contents on Rocky Linux 8

/usr/bin/asn1Coding
/usr/bin/asn1Decoding
/usr/bin/asn1Parser
/usr/lib/.build-id
/usr/lib/.build-id/67
/usr/lib/.build-id/67/46b83f5cee1e11bc1aa5bbded1590e7a1f3958
/usr/lib/.build-id/93
/usr/lib/.build-id/93/c363cf97aaa48c092813fc16022ffb04e7dc15
/usr/lib/.build-id/b3
/usr/lib/.build-id/b3/00396e870a7fbdd2d2b16e66c14aafdaac26bc
/usr/share/man/man1/asn1Coding.1.gz
/usr/share/man/man1/asn1Decoding.1.gz
/usr/share/man/man1/asn1Parser.1.gz

References

Summary

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