Code

initial
[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>FR <A HREF="ftp://ftp.fastorama.com/mirrors/rrdtool/">ftp://ftp.fastorama.com/mirrors/rddtool</A> (MrJacK mrjack@fastorama.com)</LI>
22   <LI>NL <A HREF="ftp://ftp.bit.nl/mirror/rrdtool/">ftp://ftp.bit.nl/mirror/rrdtool/</A> (BIT, The Netherlands mirror@bit.nl)</LI>
23   <LI>RO <A HREF="http://ftp.idilis.ro/mirrors/rrdtool/">http://ftp.idilis.ro/mirrors/rrdtool/</A> (Dragos Nitu mirrors@idilis.net)</LI>
24   <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>
25   <LI>SI <A HREF="http://www.fastmirrors.org/rrdtool/">http://www.fastmirrors.org/rrdtool/</A> (Tomy Kurtis webadmin [at] fastmirrors.org)</LI>
26 </UL>
28 <H2>Binary Distributions</H2>
30 <UL>
31  <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>
32  <LI>Debian Linux <A HREF="http://packages.debian.org/rrdtool">http://packages.debian.org/rrdtool</A></LI>
33  <LI>Redhat/Fedora <A href="http://dag.wieers.com/packages/rrdtool/">http://dag.wieers.com/packages/rrdtool/</a></li>
34  <LI>Native Windows 1 <A HREF="http://oss.oetiker.ch/rrdtool/pub/?M=D">local</a></LI>
35  <LI>Native Windows 2 <A HREF="http://www.gknw.net/mirror/rrdtool/">http://www.gknw.net/mirror/rrdtool/</a></LI>
36  <LI>NetWare <A HREF="http://www.gknw.net/mirror/rrdtool/">http://www.gknw.net/mirror/rrdtool/</a></LI>
37  <LI>Cygwin Windows <A HREF="http://www.cacti.net/downloads/rrdtool/win32">http://www.cacti.net/downloads/rrdtool/win32/</a></LI>
38  <LI>Solaris <A HREF="http://www.sunfreeware.com">http://www.sunfreeware.com</a></LI>
39 </UL>
41 <H2>Anonymous SVN for RRDtool</H2>
43 <p>RRDtool source is stored in a subversion repository with anonymous access.</p>
45 <p>Browse the RRDtool SVN via <a href="http://oss.oetiker.ch/rrdtool-trac/browser/branches/1.2/program">RRDtrac</a>.
46 Or if you want todo more than look ...</p>
48 <pre>
49 svn ls -R svn://svn.oetiker.ch/rrdtool/
50 </pre>
52 <p>tells you what is in the repository. Normally, development will happen in
53 the "trunk" directory. Every major release gets an entry in the "branches"
54 tree, and every released version get added to the "tags" tree.</p>
56 <p>If you checkout code from the subversion repository, you will find that
57 the <b>configure</b> script is missing. You get this generated by running:
58 <B>./MakeMakefile</B> ... note that you will need automake, autoconf and
59 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>Starting with rrdtool 1.3rc1, make sure to run <code>./configure --enable-maintainer-mode</code> prior
65 before 'makeing' modified source, to ensure that all bits get properly
66 rebuilt.</p>
68 <p>To get the latest changes from the current 1.2 branch use this:</p>
69 <pre>
70 svn checkout svn://svn.oetiker.ch/rrdtool/branches/1.2/program
71 mv program rrdtool-1.2
72 cd rrdtool-1.2
73 ./MakeMakefile
74 </pre>