How To Install perl-IO-AIO on Rocky Linux 8

In this tutorial we learn how to install perl-IO-AIO on Rocky Linux 8. perl-IO-AIO is Asynchronous Input/Output

Introduction

In this tutorial we learn how to install perl-IO-AIO on Rocky Linux 8.

What is perl-IO-AIO

This module implements asynchronous I/O using whatever means your operating system supports.

We can use yum or dnf to install perl-IO-AIO on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install perl-IO-AIO.

Install perl-IO-AIO on Rocky Linux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install perl-IO-AIO using dnf by running the following command:

sudo dnf -y install perl-IO-AIO

Install perl-IO-AIO on Rocky Linux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install perl-IO-AIO using yum by running the following command:

sudo yum -y install perl-IO-AIO

How To Uninstall perl-IO-AIO on Rocky Linux 8

To uninstall only the perl-IO-AIO package we can use the following command:

sudo dnf remove perl-IO-AIO

perl-IO-AIO Package Contents on Rocky Linux 8

/usr/lib/.build-id
/usr/lib/.build-id/1b
/usr/lib/.build-id/1b/5fc7ba97209f8b5afead0b90d832a2237d402d
/usr/lib64/perl5/vendor_perl/IO
/usr/lib64/perl5/vendor_perl/IO/AIO.pm
/usr/lib64/perl5/vendor_perl/auto/IO
/usr/lib64/perl5/vendor_perl/auto/IO/AIO
/usr/lib64/perl5/vendor_perl/auto/IO/AIO/AIO.so
/usr/share/doc/perl-IO-AIO
/usr/share/doc/perl-IO-AIO/Changes
/usr/share/doc/perl-IO-AIO/README
/usr/share/licenses/perl-IO-AIO
/usr/share/licenses/perl-IO-AIO/COPYING
/usr/share/man/man3/IO::AIO.3pm.gz

References

Summary

In this tutorial we learn how to install perl-IO-AIO on Rocky Linux 8 using yum and dnf.