How To Install fcgi-devel on CentOS 8
Introduction
In this tutorial we learn how to install fcgi-devel
on CentOS 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 CentOS 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 CentOS 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
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 CentOS 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 kB 00:00
Metadata cache created.
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 CentOS 8
To uninstall only the fcgi-devel
package we can use the following command:
sudo dnf remove fcgi-devel
fcgi-devel Package Contents on CentOS 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 CentOS 8 using yum and dnf.