Question: How to fix this Compiling issue in Nagios ?
/usr/bin/install: omitting directory `includes/rss/extlib' /usr/bin/install: omitting directory `includes/rss/htdocs' /usr/bin/install: omitting directory `includes/rss/scripts' make[1]: *** [install] Error 1 make[1]: Leaving directory `/media/europa/callisto/nagios___/nagios-3.3.1/nagios/html' make: *** [install] Error 2
Answer :
Use the following commands to compile Nagios
tar -zxvf nagios...tar.gz cd nagios configure
sed -i 's:for file in includes/rss/*;:for file in includes/rss/*.*;:g' ./html/Makefile sed -i 's:for file in includes/rss/extlib/*;:for file in includes/rss/extlib/*.*;:g' ./html/Makefile make fullinstall
Tested under Opensuse 12.1 and Ubuntu 10.x en 11.x and it works perfectly.