How To Install tdb-tools on Rocky Linux 8

In this tutorial we learn how to install tdb-tools on Rocky Linux 8. tdb-tools is Developer tools for the Tdb library

Introduction

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

What is tdb-tools

Tools to manage Tdb files

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

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

sudo dnf -y install tdb-tools

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

sudo yum -y install tdb-tools

How To Uninstall tdb-tools on Rocky Linux 8

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

sudo dnf remove tdb-tools

tdb-tools Package Contents on Rocky Linux 8

/usr/bin/tdbbackup
/usr/bin/tdbdump
/usr/bin/tdbrestore
/usr/bin/tdbtool
/usr/lib/.build-id
/usr/lib/.build-id/15
/usr/lib/.build-id/15/6af13960c6f2b6c0e6f4da77fef77f3472cfe7
/usr/lib/.build-id/1c
/usr/lib/.build-id/1c/3f1d4fa62a44866ea103e5a5c14fb8c33fddd1
/usr/lib/.build-id/b7
/usr/lib/.build-id/b7/ad2dff36086c6e57323b6efa3e049f65a45205
/usr/lib/.build-id/e4
/usr/lib/.build-id/e4/b6b2d3a992c86af2acf5385e4988c18db84668
/usr/share/man/man8/tdbbackup.8.gz
/usr/share/man/man8/tdbdump.8.gz
/usr/share/man/man8/tdbrestore.8.gz
/usr/share/man/man8/tdbtool.8.gz

References

Summary

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