How To Install perl-CGI-SpeedyCGI on CentOS 7
Introduction
In this tutorial we learn how to install perl-CGI-SpeedyCGI
on CentOS 7.
What is perl-CGI-SpeedyCGI
SpeedyCGI is a way to run perl scripts persistently, which can make them run much more quickly. After the script is initially run, instead of exiting, the perl interpreter is kept running. During subsequent runs, this interpreter is used to handle new executions instead of starting a new perl interpreter each time. It is a very fast frontend program, written in C, is executed for each request.
We can use yum
or dnf
to install perl-CGI-SpeedyCGI
on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install perl-CGI-SpeedyCGI.
Install perl-CGI-SpeedyCGI on CentOS 7 Using yum
Update yum database with yum
using the following command.
sudo yum makecache
After updating yum database, We can install perl-CGI-SpeedyCGI
using yum
by running the following command:
sudo yum -y install perl-CGI-SpeedyCGI
Install perl-CGI-SpeedyCGI on CentOS 7 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf
using the following command.
sudo dnf makecache
After updating yum database, We can install perl-CGI-SpeedyCGI
using dnf
by running the following command:
sudo dnf -y install perl-CGI-SpeedyCGI
How To Uninstall perl-CGI-SpeedyCGI on CentOS 7
To uninstall only the perl-CGI-SpeedyCGI
package we can use the following command:
sudo dnf remove perl-CGI-SpeedyCGI
References
Summary
In this tutorial we learn how to install perl-CGI-SpeedyCGI
on CentOS 7 using yum
and dnf
.