How To Install ldb-tools on Rocky Linux 8

In this tutorial we learn how to install ldb-tools on Rocky Linux 8. ldb-tools is Tools to manage LDB files

Introduction

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

What is ldb-tools

Tools to manage LDB files

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

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

sudo dnf -y install ldb-tools

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

sudo yum -y install ldb-tools

How To Uninstall ldb-tools on Rocky Linux 8

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

sudo dnf remove ldb-tools

ldb-tools Package Contents on Rocky Linux 8

/usr/bin/ldbadd
/usr/bin/ldbdel
/usr/bin/ldbedit
/usr/bin/ldbmodify
/usr/bin/ldbrename
/usr/bin/ldbsearch
/usr/lib/.build-id
/usr/lib/.build-id/3a
/usr/lib/.build-id/3a/aa682af3d4bbd775df30158edd6c7d93f49b40
/usr/lib/.build-id/6b
/usr/lib/.build-id/6b/87eb0f4e48ad01ea97d7a86245a8f853eeca86
/usr/lib/.build-id/6c
/usr/lib/.build-id/6c/eb4f1a3d997080cfba4890d471c9feaddf95ee
/usr/lib/.build-id/bc
/usr/lib/.build-id/bc/68ee0d937d456e04d94741420018937f22e655
/usr/lib/.build-id/c7
/usr/lib/.build-id/c7/27fee3accdb30a919d970e137aa59556ed9832
/usr/lib/.build-id/e7
/usr/lib/.build-id/e7/9697c264d71fcb196d11ba4ae14f76fb68e29b
/usr/lib/.build-id/eb
/usr/lib/.build-id/eb/a66e6e1d7b8da0949ead626e0dc9070e680a51
/usr/lib64/ldb/libldb-cmdline.so
/usr/share/man/man1/ldbadd.1.gz
/usr/share/man/man1/ldbdel.1.gz
/usr/share/man/man1/ldbedit.1.gz
/usr/share/man/man1/ldbmodify.1.gz
/usr/share/man/man1/ldbrename.1.gz
/usr/share/man/man1/ldbsearch.1.gz

References

Summary

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