How To Install php-pecl-dio on Fedora 36

In this tutorial we learn how to install php-pecl-dio in Fedora 36. php-pecl-dio is Direct I/O functions

Introduction

In this tutorial we learn how to install php-pecl-dio on Fedora 36.

What is php-pecl-dio

PHP supports the direct io functions as described in the Posix Standard (Section 6) for performing I/O functions at a lower level than the C-Language stream I/O functions (fopen(), fread(),..). DIO provides functions and stream wrappers which provide raw and serial low level IO support. The use of the DIO functions should be considered only when direct control of a device is needed. In all other cases, the standard filesystem functions are more than adequate.

We can use yum or dnf to install php-pecl-dio on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install php-pecl-dio.

Install php-pecl-dio 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 php-pecl-dio using dnf by running the following command:

sudo dnf -y install php-pecl-dio

Install php-pecl-dio 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 php-pecl-dio using yum by running the following command:

sudo yum -y install php-pecl-dio

How To Uninstall php-pecl-dio on Fedora 36

To uninstall only the php-pecl-dio package we can use the following command:

sudo dnf remove php-pecl-dio

php-pecl-dio Package Contents on Fedora 36

/etc/php-zts.d/40-dio.ini
/etc/php.d/40-dio.ini
/usr/lib/.build-id
/usr/lib/.build-id/62
/usr/lib/.build-id/62/41123801efc17c1f2b53e82705f771f5469421
/usr/lib/.build-id/cf
/usr/lib/.build-id/cf/f15e97860428a6dc2450db088605fbd99d7474
/usr/lib64/php-zts/modules/dio.so
/usr/lib64/php/modules/dio.so
/usr/share/licenses/php-pecl-dio
/usr/share/licenses/php-pecl-dio/LICENSE
/var/lib/php/peclxml/php-pecl-dio.xml

References

Summary

In this tutorial we learn how to install php-pecl-dio on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).