Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Got this while trying to compile nginx from source. ./configure: error: the Google perftools module requires the Google perftools Issue the following at shell to fix this: yum install gperftools-devel
Yet another error while trying to compile nginx from source. ./configure: error: the GeoIP module requires the GeoIP library The fix is simple, issue the following at shell: yum install geoip-devel
If you run into the following error while compiling nginx from source, follow the steps below: ./configure: error: perl module ExtUtils::Embed is required Issue the following at shell: yum install perl-ExtUtils-Embed That’s it.
Ran into another error while trying to compile nginx from source ./configure: error: the HTTP image filter module requires the GD library. You can either do not enable the module or install the libraries. This has a quick fix as…
Ran into this error when I was trying to compile nginx from source: ./configure: error: the HTTP XSLT module requires the libxml2/libxslt libraries. You can either do not enable the module or install the libraries. Luckily there’s a quick fix…
We recently needed the latest build of ImageMagick on one of our servers for PSD preview generation on OwnCloud. ImageMagick version 6, which ships with the base repo of CentOS 7 is broken and doesn’t generate PSD previews. Downloading rpm’s…