How To Install liburing on Fedora 36
Introduction
In this tutorial we learn how to install liburing
on Fedora 36.
What is liburing
Provides native async IO for the Linux kernel, in a fast and efficient manner, for both buffered and O_DIRECT.
We can use yum
or dnf
to install liburing
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install liburing.
Install liburing 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 liburing
using dnf
by running the following command:
sudo dnf -y install liburing
Install liburing 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 liburing
using yum
by running the following command:
sudo yum -y install liburing
How To Uninstall liburing on Fedora 36
To uninstall only the liburing
package we can use the following command:
sudo dnf remove liburing
liburing Package Contents on Fedora 36
/usr/lib/.build-id
/usr/lib/.build-id/32
/usr/lib/.build-id/32/97c5b45cda081a2d78ef6464367489bb793730
/usr/lib64/liburing.so.2
/usr/lib64/liburing.so.2.0.0
/usr/share/licenses/liburing
/usr/share/licenses/liburing/COPYING
References
Summary
In this tutorial we learn how to install liburing
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).