How To Install php-process on Rocky Linux 8
Introduction
In this tutorial we learn how to install php-process
on Rocky Linux 8.
What is php-process
The php-process package contains dynamic shared objects which add support to PHP using system interfaces for inter-process communication.
We can use yum
or dnf
to install php-process
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install php-process.
Install php-process 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 php-process
using dnf
by running the following command:
sudo dnf -y install php-process
Install php-process 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 php-process
using yum
by running the following command:
sudo yum -y install php-process
How To Uninstall php-process on Rocky Linux 8
To uninstall only the php-process
package we can use the following command:
sudo dnf remove php-process
php-process Package Contents on Rocky Linux 8
/etc/php.d/20-posix.ini
/etc/php.d/20-shmop.ini
/etc/php.d/20-sysvmsg.ini
/etc/php.d/20-sysvsem.ini
/etc/php.d/20-sysvshm.ini
/usr/lib/.build-id
/usr/lib/.build-id/04
/usr/lib/.build-id/04/f47b8806dd7c7611a3ab0e7a07a939117fe602
/usr/lib/.build-id/48
/usr/lib/.build-id/48/aab1b31b19c6c1f0e63a2e1f1640f6817ae9f4
/usr/lib/.build-id/6f
/usr/lib/.build-id/6f/db552c17edbf6586edd6cad093ea3a012473b7
/usr/lib/.build-id/83/57a430290112c8c31ec8a6d0c2ff63cb84f658
/usr/lib/.build-id/cf
/usr/lib/.build-id/cf/a89d4a6b340cef3475f8123c7f174fa51e1075
/usr/lib64/php/modules/posix.so
/usr/lib64/php/modules/shmop.so
/usr/lib64/php/modules/sysvmsg.so
/usr/lib64/php/modules/sysvsem.so
/usr/lib64/php/modules/sysvshm.so
References
Summary
In this tutorial we learn how to install php-process
on Rocky Linux 8 using yum and dnf.