How To Install rocksdb on Fedora 36
Introduction
In this tutorial we learn how to install rocksdb on Fedora 36.
What is rocksdb
RocksDB is a library that forms the core building block for a fast key value server, especially suited for storing data on flash drives. It has a Log-Structured-Merge-Database (LSM) design with flexible trade offs between Write-Amplification-Factor (WAF), Read-Amplification-Factor (RAF) and Space-Amplification-Factor (SAF). It has multi-threaded compaction, making it specially suitable for storing multiple terabytes of data in a single database.
We can use yum or dnf to install rocksdb on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install rocksdb.
Install rocksdb 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 rocksdb using dnf by running the following command:
sudo dnf -y install rocksdb
Install rocksdb 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 rocksdb using yum by running the following command:
sudo yum -y install rocksdb
How To Uninstall rocksdb on Fedora 36
To uninstall only the rocksdb package we can use the following command:
sudo dnf remove rocksdb
rocksdb Package Contents on Fedora 36
/usr/lib/.build-id
/usr/lib/.build-id/65
/usr/lib/.build-id/65/06e88154f7ea1c9ff8acbfeba1ac954c9a9fc5
/usr/lib64/librocksdb.so.6
/usr/lib64/librocksdb.so.6.26
/usr/lib64/librocksdb.so.6.26.1
/usr/share/doc/rocksdb
/usr/share/doc/rocksdb/README.md
/usr/share/licenses/rocksdb
/usr/share/licenses/rocksdb/COPYING
/usr/share/licenses/rocksdb/LICENSE.Apache
/usr/share/licenses/rocksdb/LICENSE.leveldb
References
Summary
In this tutorial we learn how to install rocksdb on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).