We will use REMI repository to install PHP 8.0 on CentOS 8 / RHEL 8 Linux system Steps:- dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm dnf -y install https://rpms.remirepo.net/enterprise/remi-release-8.rpm dnf –enablerepo=remi-test install php80 dnf install -y php80-php-common php80-php-fpm php80 php80-php-cli php80-php php80 -v systemctl start php80-php-fpm systemctl status php80-php-fpm ip a |grep ens33|grep inet|awk ‘{print $2}’|awk -F “/” ‘{print $1}’ vim /var/www/html/info.php curl -I http://localhost/info.php Video :- https://www.youtube.com/watch?v=qDqjxL5brQU Github https://github.com/NavdeepD2/How-to/blob/master/install-php-8.0-on-CentOS-8 Detailed Output:- [root@server…