How To Install libdhash on Rocky Linux 8
Introduction
In this tutorial we learn how to install libdhash on Rocky Linux 8.
What is libdhash
A hash table which will dynamically resize to achieve optimal storage & access time properties
We can use yum or dnf to install libdhash on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libdhash.
Install libdhash 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 libdhash using dnf by running the following command:
sudo dnf -y install libdhash
Install libdhash 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 libdhash using yum by running the following command:
sudo yum -y install libdhash
How To Uninstall libdhash on Rocky Linux 8
To uninstall only the libdhash package we can use the following command:
sudo dnf remove libdhash
libdhash Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/34
/usr/lib/.build-id/34/03fd729b92753be54665dcfac9b5389d580556
/usr/lib64/libdhash.so.1
/usr/lib64/libdhash.so.1.1.0
/usr/share/doc/libdhash
/usr/share/doc/libdhash/COPYING
/usr/share/doc/libdhash/COPYING.LESSER
/usr/lib/.build-id
/usr/lib/.build-id/60
/usr/lib/.build-id/60/e9440ea3d3ad2348bbd1913b898e89d003d854
/usr/lib/libdhash.so.1
/usr/lib/libdhash.so.1.1.0
/usr/share/doc/libdhash
/usr/share/doc/libdhash/COPYING
/usr/share/doc/libdhash/COPYING.LESSER
References
Summary
In this tutorial we learn how to install libdhash on Rocky Linux 8 using yum and dnf.