This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Build rrdtool ====== Please note that during the ./configure steps you need to check for missing libraries, this guide assumes you are using the eSG provided installation image. ===== Steps ===== ==== Building Pre requisites ==== <sxh> cd ~ mkdir rrdbuild cd rrdbuild </sxh> ==== Library Prerequisites ==== <sxh>yum install -y epel-release yum groupinstall 'Development Tools' yum install pango-devel </sxh> ==== EXPORTS used to set versions ==== You can change the values here to change compiled version. <sxh>RRDTOOL_VERSION=1.7.0 </sxh> === Fetch RRDTool === <sxh> wget https://oss.oetiker.ch/rrdtool/pub/rrdtool-${RRDTOOL_VERSION}.tar.gz tar zcfv rrdtool-${RRDTOOL_VERSION}.tar.gz cd rrdtool-${RRDTOOL_VERSION}</sxh> === Configure & Build === <sxh> ./configure --prefix=/opt/rrdtool make </sxh> === Install === <sxh> make install </sxh>