How To Install ivykis on Fedora 34
Introduction
In this tutorial we learn how to install ivykis
on Fedora 34.
What is ivykis
ivykis is a library for asynchronous I/O readiness notification. It is a thin, portable wrapper around OS-provided mechanisms such as epoll_create(2), kqueue(2), poll(2), poll(7d) (/dev/poll) and port_create(3C). ivykis was mainly designed for building high-performance network applications, but can be used in any event-driven application that uses poll(2)able file descriptors as its event sources. ivykis 0.42.4 5.fc34 x86_64 46 k ivykis-0.42.4-5.fc34.src.rpm fedora Library for asynchronous I/O readiness notification http LGPLv2+ ivykis is a library for asynchronous I/O readiness notification. It is a thin, portable wrapper around OS-provided mechanisms such as epoll_create(2), kqueue(2), poll(2), poll(7d) (/dev/poll) and port_create(3C). ivykis was mainly designed for building high-performance network applications, but can be used in any event-driven application that uses poll(2)able file descriptors as its event sources.
We can use yum
or dnf
to install ivykis
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install ivykis.
Install ivykis 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 ivykis
using dnf
by running the following command:
sudo dnf -y install ivykis
Install ivykis 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 ivykis
using yum
by running the following command:
sudo yum -y install ivykis
How To Uninstall ivykis on Fedora 34
To uninstall only the ivykis
package we can use the following command:
sudo dnf remove ivykis
ivykis Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/02
/usr/lib/.build-id/02/4d51604d11e3e20c74a0632e16c0ab0a8d2ef0
/usr/lib/libivykis.so.0
/usr/lib/libivykis.so.0.5.6
/usr/share/doc/ivykis
/usr/share/doc/ivykis/AUTHORS
/usr/share/doc/ivykis/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/97
/usr/lib/.build-id/97/d7659278426d2eb580b6d4aaa5243c19adbde6
/usr/lib64/libivykis.so.0
/usr/lib64/libivykis.so.0.5.6
/usr/share/doc/ivykis
/usr/share/doc/ivykis/AUTHORS
/usr/share/doc/ivykis/COPYING
References
- [ivykis website](http://libivykis.sourceforge.net/ http://libivykis.sourceforge.net/)
Summary
In this tutorial we learn how to install ivykis
on Fedora 34 using yum and dnf.