How To Install fcgi-devel on Rocky Linux 8
Introduction
In this tutorial we learn how to install fcgi-devel
on Rocky Linux 8.
What is fcgi-devel
The fcgi-devel package contains libraries and header files for developing applications that use fcgi.
We can use yum
or dnf
to install fcgi-devel
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install fcgi-devel.
Install fcgi-devel 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 fcgi-devel
using dnf
by running the following command:
sudo dnf -y install fcgi-devel
Install fcgi-devel 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 fcgi-devel
using yum
by running the following command:
sudo yum -y install fcgi-devel
How To Uninstall fcgi-devel on Rocky Linux 8
To uninstall only the fcgi-devel
package we can use the following command:
sudo dnf remove fcgi-devel
fcgi-devel Package Contents on Rocky Linux 8
/usr/include/fastcgi.h
/usr/include/fcgi_config.h
/usr/include/fcgi_stdio.h
/usr/include/fcgiapp.h
/usr/include/fcgimisc.h
/usr/include/fcgio.h
/usr/include/fcgios.h
/usr/lib64/libfcgi++.so
/usr/lib64/libfcgi.so
/usr/share/doc/fcgi-devel
/usr/share/doc/fcgi-devel/doc
/usr/share/doc/fcgi-devel/doc/fastcgi-prog-guide
/usr/share/doc/fcgi-devel/doc/fastcgi-prog-guide/ap_guida.htm
/usr/share/doc/fcgi-devel/doc/fastcgi-prog-guide/ap_guide.htm
/usr/share/doc/fcgi-devel/doc/fastcgi-prog-guide/apaman.htm
/usr/share/doc/fcgi-devel/doc/fastcgi-prog-guide/ch1inta1.gif
/usr/share/doc/fcgi-devel/doc/fastcgi-prog-guide/ch1intra.gif
/usr/share/doc/fcgi-devel/doc/fastcgi-prog-guide/ch1intro.htm
/usr/share/doc/fcgi-devel/doc/fastcgi-prog-guide/ch2c.htm
/usr/share/doc/fcgi-devel/doc/fastcgi-prog-guide/ch3perl.htm
/usr/share/doc/fcgi-devel/doc/fastcgi-prog-guide/ch4tcl.htm
/usr/share/doc/fcgi-devel/doc/fastcgi-prog-guide/cover.htm
/usr/share/doc/fcgi-devel/doc/fastcgi-prog-guide/covera.gif
/usr/share/doc/fcgi-devel/doc/fastcgi-whitepaper
/usr/share/doc/fcgi-devel/doc/fastcgi-whitepaper/fastcgi.htm
/usr/share/doc/fcgi-devel/doc/fastcgi-whitepaper/img00001.gif
/usr/share/doc/fcgi-devel/doc/fastcgi-whitepaper/img00002.gif
/usr/share/doc/fcgi-devel/doc/fastcgi-whitepaper/img00003.gif
/usr/share/doc/fcgi-devel/doc/fcgi-devel-kit.htm
/usr/share/doc/fcgi-devel/doc/fcgi-java.htm
/usr/share/doc/fcgi-devel/doc/fcgi-perf.htm
/usr/share/doc/fcgi-devel/doc/fcgi-perl.htm
/usr/share/doc/fcgi-devel/doc/fcgi-spec.html
/usr/share/doc/fcgi-devel/doc/fcgi-tcl.htm
/usr/share/doc/fcgi-devel/doc/omi-logo.gif
/usr/share/doc/fcgi-devel/doc/overview.html
/usr/share/doc/fcgi-devel/doc/www5-api-workshop.html
/usr/share/man/man3/FCGI_Accept.3.gz
/usr/share/man/man3/FCGI_Finish.3.gz
/usr/share/man/man3/FCGI_SetExitStatus.3.gz
/usr/share/man/man3/FCGI_StartFilterData.3.gz
References
Summary
In this tutorial we learn how to install fcgi-devel
on Rocky Linux 8 using yum and dnf.