How to Install and Uninstall kyotocabinet.src Package on Oracle Linux 8

Last updated: September 29,2024

1. Install "kyotocabinet.src" package

In this section, we are going to explain the necessary steps to install kyotocabinet.src on Oracle Linux 8

$ sudo dnf update $ sudo dnf install kyotocabinet.src

2. Uninstall "kyotocabinet.src" package

Please follow the steps below to uninstall kyotocabinet.src on Oracle Linux 8:

$ sudo dnf remove kyotocabinet.src $ sudo dnf autoremove

3. Information about the kyotocabinet.src package on Oracle Linux 8

Last metadata expiration check: 6:59:27 ago on Mon Sep 12 02:51:38 2022.
Available Packages
Name : kyotocabinet
Version : 1.2.76
Release : 17.el8
Architecture : src
Size : 955 k
Source : None
Repository : ol8_appstream
Summary : A straightforward implementation of DBM
URL : http://fallabs.com/kyotocabinet/
License : GPLv3
Description : Kyoto Cabinet is a library of routines for managing a database. The
: database is a simple data file containing records, each is a pair of
: a key and a value. Every key and value is serial bytes with variable
: length. Both binary data and character string can be used as a key
: and a value. Each key must be unique within a database. And there is
: neither concept of data tables nor data types. Records are organized
: in hash table or B+ tree.