How To Install libdhash on Fedora 34
Introduction
In this tutorial we learn how to install libdhash
on Fedora 34.
What is libdhash
A hash table which will dynamically resize to achieve optimal storage & access time properties libdhash 0.5.0 47.fc34 x86_64 29 k ding-libs-0.6.1-47.fc34.src.rpm fedora Dynamic hash table https LGPLv3+ A hash table which will dynamically resize to achieve optimal storage & access time properties
We can use yum
or dnf
to install libdhash
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libdhash.
Install libdhash on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install libdhash
using dnf
by running the following command:
sudo dnf -y install libdhash
Install libdhash on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
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 Fedora 34
To uninstall only the libdhash
package we can use the following command:
sudo dnf remove libdhash
libdhash Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/9d
/usr/lib/.build-id/9d/fd348c19a758ca321ef90ef6dbac2ae2c68da6
/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/c2
/usr/lib/.build-id/c2/3e0d0848415cade5437392367c23a18a6d94ad
/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
- [libdhash website](https://pagure.io/SSSD/ding-libs https://pagure.io/SSSD/ding-libs)
Summary
In this tutorial we learn how to install libdhash
on Fedora 34 using yum and dnf.