How To Install qdbm on Fedora 36
Introduction
In this tutorial we learn how to install qdbm
on Fedora 36.
What is qdbm
QDBM is an embedded database library compatible with GDBM and NDBM. It features hash database and B+ tree database and is developed referring to GDBM for the purpose of the following three points speed, smaller size of a database file, and simpler API.
We can use yum
or dnf
to install qdbm
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install qdbm.
Install qdbm on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install qdbm
using dnf
by running the following command:
sudo dnf -y install qdbm
Install qdbm on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install qdbm
using yum
by running the following command:
sudo yum -y install qdbm
How To Uninstall qdbm on Fedora 36
To uninstall only the qdbm
package we can use the following command:
sudo dnf remove qdbm
qdbm Package Contents on Fedora 36
/usr/bin/cbcodec
/usr/bin/cbtest
/usr/bin/crmgr
/usr/bin/crtest
/usr/bin/crtsv
/usr/bin/dpmgr
/usr/bin/dptest
/usr/bin/dptsv
/usr/bin/hvmgr
/usr/bin/hvtest
/usr/bin/odidx
/usr/bin/odmgr
/usr/bin/odtest
/usr/bin/qmttest
/usr/bin/rlmgr
/usr/bin/rltest
/usr/bin/vlmgr
/usr/bin/vltest
/usr/bin/vltsv
/usr/include/qdbm
/usr/lib/.build-id
/usr/lib/.build-id/09
/usr/lib/.build-id/09/f89d3b05c4757dd94cfa8380db6683f568d984
/usr/lib/.build-id/0a
/usr/lib/.build-id/0a/8c69e5106631fd8d30081142357a65bc29838c
/usr/lib/.build-id/12
/usr/lib/.build-id/12/a9b9233034f42b16077f29c9e094c869668b97
/usr/lib/.build-id/1a
/usr/lib/.build-id/1a/d2b66ed2fec1f1cbb54b3105048138ab36b33f
/usr/lib/.build-id/21
/usr/lib/.build-id/21/4a3462537429696286a34b6066246f6ef9d89a
/usr/lib/.build-id/2b
/usr/lib/.build-id/2b/f4e1dee691698d90b43fb5e12483fd458c92ee
/usr/lib/.build-id/36
/usr/lib/.build-id/36/79b220c63f09992a5e6f6af76b2f6e04a7eaf0
/usr/lib/.build-id/3d
/usr/lib/.build-id/3d/7edb2b60d84de3bc07a2b91c544b49a1782567
/usr/lib/.build-id/40
/usr/lib/.build-id/40/a143f8bc2adf296dad0c652217d69ca6d36807
/usr/lib/.build-id/4d
/usr/lib/.build-id/4d/6c5a75d8ea6cea5371adacbed4afaa70ae9b61
/usr/lib/.build-id/4f
/usr/lib/.build-id/4f/0a39e48dcab26fecd7a7218a79af12136a890d
/usr/lib/.build-id/65
/usr/lib/.build-id/65/7dca286ab49e7dc3167d52f0fe096dbc170df9
/usr/lib/.build-id/76
/usr/lib/.build-id/76/32836b04171ed62cc40de9fc7020644b9bd1bc
/usr/lib/.build-id/a8
/usr/lib/.build-id/a8/4f92ddea3734b202fa0bbaa7d51811d8022333
/usr/lib/.build-id/ae
/usr/lib/.build-id/ae/205de7569a30eb99082d98e673c722a45122a3
/usr/lib/.build-id/b6
/usr/lib/.build-id/b6/28b9d3f560ad3f6be70d2f173a47e6ccc38391
/usr/lib/.build-id/b9
/usr/lib/.build-id/b9/25bbf7a17a90a38f66988a01064f048540b437
/usr/lib/.build-id/c2
/usr/lib/.build-id/c2/2b03aa446dfe3d556c1be5731f5830374fbcd2
/usr/lib/.build-id/f0
/usr/lib/.build-id/f0/875ac6026bf7cf05ca47a151dddc904ffce738
/usr/lib/.build-id/ff
/usr/lib/.build-id/ff/b97760f0ab9a0623ee9668e95547dec82046da
/usr/lib64/libqdbm.so.14
/usr/lib64/libqdbm.so.14.14.0
/usr/share/doc/qdbm
/usr/share/doc/qdbm/COPYING
/usr/share/doc/qdbm/ChangeLog
/usr/share/doc/qdbm/NEWS
/usr/share/doc/qdbm/README
/usr/share/doc/qdbm/THANKS
/usr/share/doc/qdbm/icon16.png
/usr/share/doc/qdbm/index.html
/usr/share/doc/qdbm/index.ja.html
/usr/share/doc/qdbm/logo.png
/usr/share/man/man1/cbcodec.1.gz
/usr/share/man/man1/cbtest.1.gz
/usr/share/man/man1/crmgr.1.gz
/usr/share/man/man1/crtest.1.gz
/usr/share/man/man1/crtsv.1.gz
/usr/share/man/man1/dpmgr.1.gz
/usr/share/man/man1/dptest.1.gz
/usr/share/man/man1/dptsv.1.gz
/usr/share/man/man1/hvmgr.1.gz
/usr/share/man/man1/hvtest.1.gz
/usr/share/man/man1/odidx.1.gz
/usr/share/man/man1/odmgr.1.gz
/usr/share/man/man1/odtest.1.gz
/usr/share/man/man1/qmttest.1.gz
/usr/share/man/man1/rlmgr.1.gz
/usr/share/man/man1/rltest.1.gz
/usr/share/man/man1/vlmgr.1.gz
/usr/share/man/man1/vltest.1.gz
/usr/share/man/man1/vltsv.1.gz
References
Summary
In this tutorial we learn how to install qdbm
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).
title: “How To Install qdbm on Fedora 36” linkTitle: “qdbm” type: “docs” description: “In this tutorial we learn how to install qdbm in Fedora 36. qdbm is Quick Database Manager” date: “2022-08-17” lastmod: “2022-08-17” #image: /images/fedora/36/qdbm-featured.png
Introduction
In this tutorial we learn how to install qdbm
on Fedora 36.
What is qdbm
QDBM is an embedded database library compatible with GDBM and NDBM. It features hash database and B+ tree database and is developed referring to GDBM for the purpose of the following three points speed, smaller size of a database file, and simpler API.
We can use yum
or dnf
to install qdbm
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install qdbm.
Install qdbm on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install qdbm
using dnf
by running the following command:
sudo dnf -y install qdbm
Install qdbm on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install qdbm
using yum
by running the following command:
sudo yum -y install qdbm
How To Uninstall qdbm on Fedora 36
To uninstall only the qdbm
package we can use the following command:
sudo dnf remove qdbm
qdbm Package Contents on Fedora 36
/usr/bin/cbcodec
/usr/bin/cbtest
/usr/bin/crmgr
/usr/bin/crtest
/usr/bin/crtsv
/usr/bin/dpmgr
/usr/bin/dptest
/usr/bin/dptsv
/usr/bin/hvmgr
/usr/bin/hvtest
/usr/bin/odidx
/usr/bin/odmgr
/usr/bin/odtest
/usr/bin/qmttest
/usr/bin/rlmgr
/usr/bin/rltest
/usr/bin/vlmgr
/usr/bin/vltest
/usr/bin/vltsv
/usr/include/qdbm
/usr/lib/.build-id
/usr/lib/.build-id/0f
/usr/lib/.build-id/0f/d8b3a2872cee9f506cc1023c5c64a656c8e91d
/usr/lib/.build-id/13
/usr/lib/.build-id/13/4a2a167db6defac4e54c7dfae582482d8713b0
/usr/lib/.build-id/3b
/usr/lib/.build-id/3b/fe6204eb0f19c93a85b3aecd518bfecb600e2f
/usr/lib/.build-id/53
/usr/lib/.build-id/53/99a1eb11f5ae252c14f39cc36935cb645bc1b6
/usr/lib/.build-id/74
/usr/lib/.build-id/74/4f7c69f3f6ff7678a8fa38c55d94b1973d5c81
/usr/lib/.build-id/75
/usr/lib/.build-id/75/1ade50bde6d3190f7b44bd99dd7ce4cf5a6288
/usr/lib/.build-id/94
/usr/lib/.build-id/94/ba329befd1604fd46577ac5ecddb5169f68d97
/usr/lib/.build-id/9f
/usr/lib/.build-id/9f/f42bb113b2d78bc934379ec0fd5acb1cd890cd
/usr/lib/.build-id/a2
/usr/lib/.build-id/a2/0016dacbf4c73dd19bb7e2148e8ae650fde8f8
/usr/lib/.build-id/a7
/usr/lib/.build-id/a7/65781875a892cb0fc4a97d7193544dc1687f05
/usr/lib/.build-id/d4
/usr/lib/.build-id/d4/0c98b5d168fc757743f73211ba7f01bf5afe4f
/usr/lib/.build-id/d7
/usr/lib/.build-id/d7/8f4b747160f648c4dfc79117b610f16b146d56
/usr/lib/.build-id/d8
/usr/lib/.build-id/d8/491b52b4bf3db1fcfb143d94a9dad4f2fd3ef6
/usr/lib/.build-id/e7
/usr/lib/.build-id/e7/36d3dc0cefc7954ee354359941c6df413d3369
/usr/lib/.build-id/ec
/usr/lib/.build-id/ec/4da2a4a4e132a88c256199632d389e41ab5c37
/usr/lib/.build-id/ed
/usr/lib/.build-id/ed/48a4f56379c49815cf2ab5404276bfc4772599
/usr/lib/.build-id/ee
/usr/lib/.build-id/ee/7ad50e4cd90e46b2d5e3584ff77236a0f2f2e9
/usr/lib/.build-id/f6
/usr/lib/.build-id/f6/f9fd4f5940af6e8a8064305f9303326d99b479
/usr/lib/.build-id/f8
/usr/lib/.build-id/f8/cbfb8cc2667014aed3cc546992ee2d3d60d0ef
/usr/lib/.build-id/fe
/usr/lib/.build-id/fe/9a63eb6864cc5a8fe6ca53062d656633e81de9
/usr/lib/libqdbm.so.14
/usr/lib/libqdbm.so.14.14.0
/usr/share/doc/qdbm
/usr/share/doc/qdbm/COPYING
/usr/share/doc/qdbm/ChangeLog
/usr/share/doc/qdbm/NEWS
/usr/share/doc/qdbm/README
/usr/share/doc/qdbm/THANKS
/usr/share/doc/qdbm/icon16.png
/usr/share/doc/qdbm/index.html
/usr/share/doc/qdbm/index.ja.html
/usr/share/doc/qdbm/logo.png
/usr/share/man/man1/cbcodec.1.gz
/usr/share/man/man1/cbtest.1.gz
/usr/share/man/man1/crmgr.1.gz
/usr/share/man/man1/crtest.1.gz
/usr/share/man/man1/crtsv.1.gz
/usr/share/man/man1/dpmgr.1.gz
/usr/share/man/man1/dptest.1.gz
/usr/share/man/man1/dptsv.1.gz
/usr/share/man/man1/hvmgr.1.gz
/usr/share/man/man1/hvtest.1.gz
/usr/share/man/man1/odidx.1.gz
/usr/share/man/man1/odmgr.1.gz
/usr/share/man/man1/odtest.1.gz
/usr/share/man/man1/qmttest.1.gz
/usr/share/man/man1/rlmgr.1.gz
/usr/share/man/man1/rltest.1.gz
/usr/share/man/man1/vlmgr.1.gz
/usr/share/man/man1/vltest.1.gz
/usr/share/man/man1/vltsv.1.gz
References
Summary
In this tutorial we learn how to install qdbm
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).