How To Install libzdb on Fedora 34
Introduction
In this tutorial we learn how to install libzdb
on Fedora 34.
What is libzdb
The Zild C Database Library implements a small, fast, and easy to use database API with thread-safe connection pooling. The library can connect transparently to multiple database systems, has zero configuration and connections are specified via a standard URL scheme. libzdb 3.2 6.fc34 x86_64 70 k libzdb-3.2-6.fc34.src.rpm fedora Small, easy to use Database Connection Pool Library http GPLv3+ and MIT The Zild C Database Library implements a small, fast, and easy to use database API with thread-safe connection pooling. The library can connect transparently to multiple database systems, has zero configuration and connections are specified via a standard URL scheme.
We can use yum
or dnf
to install libzdb
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libzdb.
Install libzdb 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 libzdb
using dnf
by running the following command:
sudo dnf -y install libzdb
Install libzdb 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 libzdb
using yum
by running the following command:
sudo yum -y install libzdb
How To Uninstall libzdb on Fedora 34
To uninstall only the libzdb
package we can use the following command:
sudo dnf remove libzdb
libzdb Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/2b
/usr/lib/.build-id/2b/c5e4e812edf0f5d9c4df207dd3acc8fea43c66
/usr/lib64/libzdb.so.12
/usr/lib64/libzdb.so.12.0.0
/usr/share/doc/libzdb
/usr/share/doc/libzdb/AUTHORS
/usr/share/doc/libzdb/CHANGES
/usr/share/doc/libzdb/COPYING
/usr/share/doc/libzdb/README
/usr/lib/.build-id
/usr/lib/.build-id/d2
/usr/lib/.build-id/d2/78b3cd1c8f904ab9c070312c508db3d8ccd6fa
/usr/lib/libzdb.so.12
/usr/lib/libzdb.so.12.0.0
/usr/share/doc/libzdb
/usr/share/doc/libzdb/AUTHORS
/usr/share/doc/libzdb/CHANGES
/usr/share/doc/libzdb/COPYING
/usr/share/doc/libzdb/README
References
- [libzdb website](http://www.tildeslash.com/libzdb/ http://www.tildeslash.com/libzdb/)
Summary
In this tutorial we learn how to install libzdb
on Fedora 34 using yum and dnf.