How To Install librbd1 on Fedora 34
Introduction
In this tutorial we learn how to install librbd1
on Fedora 34.
What is librbd1
RBD is a block device striped across multiple distributed objects in RADOS, a reliable, autonomic distributed object storage cluster developed as part of the Ceph distributed storage system. This is a shared library allowing applications to manage these block devices.
We can use yum
or dnf
to install librbd1
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install librbd1.
Install librbd1 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 librbd1
using dnf
by running the following command:
sudo dnf -y install librbd1
Install librbd1 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 librbd1
using yum
by running the following command:
sudo yum -y install librbd1
How To Uninstall librbd1 on Fedora 34
To uninstall only the librbd1
package we can use the following command:
sudo dnf remove librbd1
librbd1 Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/06/d2e36861748f8f04905170ab3a5f5451da8052
/usr/lib/.build-id/17
/usr/lib/.build-id/17/b2bdcb2994204cf86ce7155894a97b606b4973
/usr/lib/.build-id/25
/usr/lib/.build-id/25/78f0d1407cafadeab5f7fe90ac29287283abcb
/usr/lib/.build-id/fe
/usr/lib/.build-id/fe/80eb1dafb135c543b07f05bb7458180ad47ac2
/usr/lib64/ceph/librbd
/usr/lib64/ceph/librbd/libceph_librbd_parent_cache.so
/usr/lib64/ceph/librbd/libceph_librbd_parent_cache.so.1
/usr/lib64/ceph/librbd/libceph_librbd_parent_cache.so.1.0.0
/usr/lib64/ceph/librbd/libceph_librbd_pwl_cache.so
/usr/lib64/ceph/librbd/libceph_librbd_pwl_cache.so.1
/usr/lib64/ceph/librbd/libceph_librbd_pwl_cache.so.1.0.0
/usr/lib64/librbd.so.1
/usr/lib64/librbd.so.1.16.0
/usr/lib64/librbd_tp.so.1
/usr/lib64/librbd_tp.so.1.0.0
/usr/lib/.build-id
/usr/lib/.build-id/94
/usr/lib/.build-id/94/8b023ea146f9508d8d3b5c9852ee75ad94b85f
/usr/lib/.build-id/bd
/usr/lib/.build-id/bd/07a0c6a2b115f457e775f9ade48c8a94e72a1a
/usr/lib/.build-id/da
/usr/lib/.build-id/da/c6c96192d1f47542440acc91db4864bcbb4d0c
/usr/lib/.build-id/f0/c3739a2717863c4b44b3f66647ec2a33790204
/usr/lib64/ceph/librbd
/usr/lib64/ceph/librbd/libceph_librbd_parent_cache.so
/usr/lib64/ceph/librbd/libceph_librbd_parent_cache.so.1
/usr/lib64/ceph/librbd/libceph_librbd_parent_cache.so.1.0.0
/usr/lib64/ceph/librbd/libceph_librbd_pwl_cache.so
/usr/lib64/ceph/librbd/libceph_librbd_pwl_cache.so.1
/usr/lib64/ceph/librbd/libceph_librbd_pwl_cache.so.1.0.0
/usr/lib64/librbd.so.1
/usr/lib64/librbd.so.1.16.0
/usr/lib64/librbd_tp.so.1
/usr/lib64/librbd_tp.so.1.0.0
References
Summary
In this tutorial we learn how to install librbd1
on Fedora 34 using yum and dnf.