Code

ab43c6c024ef62dd58c073ad4f676d8b16646c3c
[rrdtool-all.git] / website / download.wml
1 <PAGE AUTHOR = "Tobias Oetiker <tobi@oetiker.ch>"
2         PAGE = "down">
4 <H1>RRDtool Download</H1>
6 You can download RRD tool from several places:
8 <H2>Primary Distribution Point</H2>
10 <UL>
11  <LI><A HREF="http://oss.oetiker.ch/rrdtool/pub/?M=D">Stable Release</A></LI>
12  <LI><A HREF="http://oss.oetiker.ch/rrdtool/pub/beta/?M=D">Development SnapShots</A></LI>
13 </UL>
15 <p>You might want to read the <a href="doc/rrdbuild.en.html">build instructions</a> for inspiration on where to go after downloading the source.</p>
17 <H2>Mirror Sites</H2>
19 <UL>
20   <LI>BR <A HREF="ftp://ftp.pucpr.br/rrdtool/">ftp://ftp.pucpr.br/rrdtool/</A>. (Rafael Gustavo Gassner rafael.gassner@pucpr.br)</LI>
21   <LI>CA <A HREF="ftp://ftp.nrc.ca/pub/packages/snmp/rrdtool">ftp://ftp.nrc.ca/pub/packages/snmp/rrdtool</A> ( William F. Maton Sotomayor wmaton@ryouko.imsb.nrc.ca)</LI>
22   <LI>FR <A HREF="ftp://ftp.fastorama.com/mirrors/rrdtool/">ftp://ftp.fastorama.com/mirrors/rddtool</A> (MrJacK mrjack@fastorama.com)</LI>
23   <LI>NL <A HREF="ftp://ftp.bit.nl/mirror/rrdtool/">ftp://ftp.bit.nl/mirror/rrdtool/</A> (BIT, The Netherlands mirror@bit.nl)</LI>
24   <LI>RO <A HREF="http://ftp.idilis.ro/mirrors/rrdtool/">http://ftp.idilis.ro/mirrors/rrdtool/</A> (Dragos Nitu mirrors@idilis.net)</LI>
25   <LI>SE <A HREF="ftp://ftp.sunet.se/pub/network/monitoring/rrdtool/">ftp://ftp.sunet.se/pub/network/monitoring/rrdtool/</A> (Johan.Hofvander@sdi.slu.se)</LI>
26   <LI>SI <A HREF="http://www.fastmirrors.org/rrdtool/">http://www.fastmirrors.org/rrdtool/</A> (Tomy Kurtis webadmin [at] fastmirrors.org)</LI>
27 </UL>
29 <H2>Binary Distributions</H2>
31 <UL>
32  <LI>AIX by <A HREF="mailto:zoran.majcenic_inet.hr">Zoran Majcenic</A> -- <A HREF="http://www.inet.hr/zmp/ibm/rrdtool">http://www.inet.hr/zmp/ibm/rrdtool</A></LI>
33  <LI>Debian Linux <A HREF="http://packages.debian.org/rrdtool">http://packages.debian.org/rrdtool</A></LI>
34  <LI>Redhat/Fedora <A href="http://dag.wieers.com/packages/rrdtool/">http://dag.wieers.com/packages/rrdtool/</a></li>
35  <LI>Native Windows 1 <A HREF="pub/?M=D">http://people.ee.ethz.ch/oetiker/webtools/rrdtool/pub/</a></LI>
36  <LI>Native Windows 2 <A HREF="http://www.gknw.net/mirror/rrdtool/">http://www.gknw.net/mirror/rrdtool/</a></LI>
37  <LI>NetWare <A HREF="http://www.gknw.net/mirror/rrdtool/">http://www.gknw.net/mirror/rrdtool/</a></LI>
38  <LI>Cygwin Windows <A HREF="http://www.cacti.net/downloads/rrdtool/win32">http://www.cacti.net/downloads/rrdtool/win32/</a></LI>
39  <LI>Solaris <A HREF="http://www.sunfreeware.com">http://www.sunfreeware.com</a></LI>
40 </UL>
42 <H2>Anonymous SVN for RRDtool</H2>
44 <p>RRDtool source is stored in a subversion repository with anonymous access.</p>
46 <p>Browse the RRDtool SVN via <a href="http://oss.oetiker.ch/rrdtool-trac/browser/branches/1.2/program">RRDtrac</a>.
47 Or if you want todo more than look ...</p>
49 <pre>
50 svn ls -R svn://svn.oetiker.ch/rrdtool/
51 </pre>
53 <p>tells you what is in the repository. Normally, development will happen in
54 the "trunk" directory. Every major release gets an entry in the "branches"
55 tree, and every released version get added to the "tags" tree.</p>
57 <p>If you checkout code from the subversion repository, you will find that
58 the <b>configure</b> script is missing. You get this generated by running:
59 <B>./MakeMakefile</B> ... note that you will need automake, autoconf and
60 libtool installed for this to work.</p>
62 <p>If you fix a bug, I would love to see the output of '<b>svn diff</b>'.</p>
64 <p>To get the latest chenges from the current 1.2 branch use this:</p>
65 <pre>
66 svn checkout svn://svn.oetiker.ch/rrdtool/branches/1.2/program
67 mv program rrdtool-1.2
68 cd rrdtool-1.2
69 ./MakeMakefile
70 </pre>