[BACK]Return to cvsup.html CVS log [TXT][DIR] Up to [local] / www

Annotation of www/cvsup.html, Revision 1.96

1.74      xsa         1: <!DOCTYPE HTML PUBLIC  "-//W3C//DTD HTML 4.01 Transitional//EN"
                      2:        "http://www.w3.org/TR/html4/loose.dtd">
1.21      naddy       3: <html>
1.1       brian       4: <head>
                      5: <title>OpenBSD CVSup</title>
1.21      naddy       6: <link rev="made" href="mailto:www@openbsd.org">
1.74      xsa         7: <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
1.21      naddy       8: <meta name="resource-type" content="document">
                      9: <meta name="description" content="How to get OpenBSD updates via Internet using CVSup">
                     10: <meta name="keywords" content="openbsd,cvsup,updates">
                     11: <meta name="distribution" content="global">
1.74      xsa        12: <meta name="copyright" content="This document copyright 2000-2004 by OpenBSD.">
1.1       brian      13: </head>
                     14:
1.7       brian      15: <body bgcolor="#FFFFFF" text="#000000" link="#23238E">
1.1       brian      16:
1.74      xsa        17: <a href="index.html"><img alt="[OpenBSD]" height="30" width="141"
                     18:        src="images/smalltitle.gif" border="0"></a>
1.7       brian      19:
                     20: <h2><font color="#e00000">CVSup</font></h2>
1.21      naddy      21: <hr>
1.1       brian      22:
1.7       brian      23: <h3>Table of Contents</h3>
                     24: <ul>
                     25: <li><a href="#cvsup">What Is CVSup?</a></li>
                     26: <li><a href="#starting">Getting Started Using CVSup</a></li>
                     27: <li><a href="#using">Using CVS to Update Your Source Tree</a></li>
                     28: <li><a href="#checkout">Running CVSup in Checkout Mode</a></li>
                     29: <li><a href="#CVSROOT">Available CVSup Servers</a></li>
1.1       brian      30: </ul>
                     31:
1.21      naddy      32: <hr>
1.1       brian      33:
1.9       naddy      34:
1.21      naddy      35: <h3><a name="cvsup"><font color="#0000e0">What Is CVSup?</font></a></h3>
1.1       brian      36:
                     37: <p>
                     38: <b>CVSup</b> is a software package for distributing and updating source
1.58      naddy      39: trees from a master <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=cvs&amp;sektion=1">cvs(1)</a> repository on a remote server host. The OpenBSD
1.1       brian      40: sources are maintained in a CVS repository on a central development machine
                     41: in Canada.  With CVSup, OpenBSD users can easily keep their own source trees
                     42: up to date.
                     43:
                     44: <p>
                     45: <b>CVSup</b> uses the so-called pull model of updating. Under the pull
                     46: model, each client asks the server for updates, if and when they are
                     47: wanted.  The server waits passively for update requests from its clients.
                     48: Thus all updates are instigated by the client.  The server never sends
                     49: unsolicited updates.  Users must either run the <b>CVSup</b> client
1.58      naddy      50: manually to get an update, or they must set up a <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=cron&amp;sektion=8">cron(8)</a> job to run it
1.1       brian      51: automatically on a regular basis.
                     52:
                     53: <p>
                     54: The term <b>CVSup</b>, capitalized just so, refers to the entire software
                     55: package. Its main components are the client <tt>cvsup</tt> which runs on
                     56: each user's machine, and the server <tt>cvsupd</tt> which runs at each of
                     57: the OpenBSD CVSup mirror sites.
                     58:
                     59: <p>
                     60: <b>CVSup</b> is intended to be both faster and more flexible than
1.21      naddy      61: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=sup&amp;sektion=1&amp;format=html">sup(1)</a>, CVSup's predecessor.
1.1       brian      62:
                     63: <p>
1.21      naddy      64: The OpenBSD Project currently has five main source repositories:
1.1       brian      65:
                     66: <ul>
1.9       naddy      67:   <li><b>src</b> - Houses all source code for the OpenBSD Operating System.</li>
                     68:   <li><b>ports</b> - Houses the <a href="./ports.html">OpenBSD Ports</a>.</li>
                     69:   <li><b>www</b> - Houses all OpenBSD web pages. (Including this one).</li>
1.88      matthieu   70:   <li><b>X11</b> - Houses OpenBSD's adaptation of the
1.89      matthieu   71:       <a href="http://www.XFree86.org/">XFree86-3</a> software project.
                     72:       This is here just for historical purposes, most users will have no
                     73:       reason to use this tree, it is no longer being used.
                     74:   <li><b>XF4</b> - Houses OpenBSD's active X source tree.
1.1       brian      75: </ul>
                     76:
1.21      naddy      77: <h3><a name="CVS"><font color="#0000e0">What Is CVS?</font></a></h3>
1.1       brian      78:
                     79: <p>
                     80: CVS is the source code control system used to manage the OpenBSD source
1.7       brian      81: tree.  It is described in more detail <a href="anoncvs.html#CVS">here</a>.
1.50      naddy      82: Note that CVS and CVSup are entirely different programs.  Although
                     83: CVS can be used for remote file access, it is not optimized for
                     84: wholesale source tree distribution over the net, and CVSup can be
                     85: easily an order of magnitude more efficient for this task.
1.1       brian      86:
1.2       brian      87: <h3>
1.21      naddy      88: <a name="starting"><font color="#0000e0">Getting Started Using CVSup</font></a>
1.2       brian      89: </h3>
1.1       brian      90:
                     91: <p>
1.59      naddy      92: Building CVSup from the sources can prove cumbersome since it is
                     93: written in Modula-3.  The <tt>lang/ezm3</tt> port provides a smaller
                     94: distribution of the Modula-3 compiler and runtime system for people
                     95: whose only need for Modula-3 is to build CVSup.  Nevertheless, if
                     96: you only care about running CVSup, it is recommended that you
                     97: download the cvsup package from the <a href="ftp.html">ftp mirror
                     98: sites</a> instead of building your own from the <tt>net/cvsup</tt>
                     99: port.  Currently the OpenBSD ports of Ezm3 and consequently CVSup
                    100: are only available on the i386 platform.
1.1       brian     101:
                    102: <p>
1.50      naddy     103: For further information about CVSup, see the author's
                    104: <a href="http://www.polstra.com/projects/freeware/CVSup/">project
                    105: homepage</a>.
1.9       naddy     106:
                    107: <p>
1.50      naddy     108: In order to mirror the OpenBSD repository with CVSup,
                    109: the following configuration file might be used:
1.1       brian     110:
                    111: <pre>
                    112:         # Defaults that apply to all the collections
                    113:         *default release=cvs
                    114:         *default delete use-rel-suffix
                    115:         *default umask=002
1.41      brad      116:         *default host=cvsup.uk.openbsd.org
1.1       brian     117:         *default base=/cvs
                    118:         *default prefix=/cvs
                    119:
                    120:         # If your network link is a T1 or faster, comment out the following line.
                    121:         *default compress
                    122:
                    123:         OpenBSD-all
                    124:         #OpenBSD-src
                    125:         #OpenBSD-www
                    126:         #OpenBSD-ports
                    127:         #OpenBSD-x11
1.20      brian     128:         #OpenBSD-xf4
1.1       brian     129: </pre>
                    130:
                    131: <p>
                    132: This directs cvsup to refresh all OpenBSD distributions from
1.58      naddy     133: <b>cvsup.uk.openbsd.org</b> with a <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=umask&amp;sektion=2">umask(2)</a> that permits group write
1.1       brian     134: permission to the local repository.
                    135:
                    136: <p>
                    137: Assuming this file is saved as <tt>cvs-supfile</tt>, the
1.39      horacio   138: following command would be used to invoke the cvsup GUI:
1.1       brian     139: <pre>
                    140:         cvsup cvs-supfile
                    141: </pre>
1.9       naddy     142: <p>
1.1       brian     143: whereas for batch mode, the following might be used:
                    144: <pre>
                    145:         cvsup -g -L 2 cvs-supfile
                    146: </pre>
                    147:
1.21      naddy     148: <h3><a name="using">
1.7       brian     149: <font color="#0000e0">Using CVS to Update Your Source Tree</font>
1.2       brian     150: </a></h3>
1.1       brian     151:
                    152: <p>
1.7       brian     153: It is now simple to check out any one of the CVSup'ed repositories.
                    154: For Korn/Bourne shells:
                    155: <pre>
                    156:         # cd /usr
                    157:         # CVSROOT=/cvs cvs checkout src
                    158: </pre>
                    159: <p>
                    160: For csh and its derivatives:
                    161: <pre>
                    162:         # cd /usr
                    163:         # setenv CVSROOT /cvs
                    164:         # cvs checkout src
                    165: </pre>
1.1       brian     166:
                    167: <p>
1.7       brian     168: The above will check out the most current sources. Many of you will only
1.1       brian     169: want the release sources, especially if you are patching your system.  To
                    170: checkout release sources you must specify a tag along with your command.
                    171: For example:
1.7       brian     172: <pre>
                    173:         # cd /usr
1.94      grunk     174:         # cvs checkout -rOPENBSD_3_7 src
1.7       brian     175: </pre>
                    176: <p>
1.94      grunk     177: Or <tt>OPENBSD_3_6</tt> for 3.6, etc.
1.7       brian     178:
1.21      naddy     179: <h3><a name="checkout"><font color="#0000e0">Running CVSup in
1.7       brian     180: Checkout Mode</font></a></h3>
1.1       brian     181:
                    182: <p>
1.7       brian     183: As an alternative to getting the repository and using CVS, you can
                    184: run CVSup in checkout mode by adding a <tt>tag</tt> or <tt>date</tt>
                    185: keyword to your supfile, either as a <tt>*default</tt> or as an
                    186: option to a collection. In particular, you can use this to efficiently
                    187: update the source and ports trees shipped on the <a
                    188: href="orders.html">CDROMs</a>.
                    189: <p>
                    190: The following supfile could be used to update your ports tree:
                    191: <pre>
                    192:         # Defaults that apply to all the collections
                    193:         *default host=cvsup.uk.openbsd.org
                    194:         *default base=/var
                    195:         *default prefix=/usr
                    196:         *default release=cvs
                    197:         *default delete use-rel-suffix compress
                    198:
                    199:         # Ports Collection.
                    200:         OpenBSD-ports tag=.
                    201: </pre>
                    202: <p>
                    203: Any CVS symbolic tag can be used.  A single period "." means HEAD,
                    204: i.e. the newest revision of all files in the main branch.  Take care
                    205: to specify an existing tag, as CVSup cannot distinguish valid from
                    206: invalid tags, and an attempt to synchronize an existing source tree
                    207: to an invalid tag will remove all files.
                    208: <p>
                    209: Alternatively, use the keyword <tt>date=[cc.]yy.mm.dd.hh.mm.ss</tt>
1.60      deraadt   210: to select a revision by date.  All 17 or 20 characters must be
1.7       brian     211: given as shown.  For the years 2000 and beyond, specify the century
                    212: <var>cc</var>.  For earlier years, specify only the last two digits
                    213: <var>yy</var>.  You may also combine the <tt>tag</tt> and <tt>date</tt>
                    214: keywords.
                    215:
1.1       brian     216:
1.2       brian     217: <h3>
1.21      naddy     218: <a name="CVSROOT"><font color="#0000e0">Available CVSup Servers</font></a>
1.2       brian     219: </h3>
1.1       brian     220:
1.74      xsa       221: <p>The following CVSup servers are available:
1.7       brian     222:
1.1       brian     223: <dl>
1.41      brad      224: <dt><a href="http://cvsup.uk.openbsd.org"><strong>cvsup.uk.openbsd.org</strong></a></dt>
1.7       brian     225: <dd><p>
1.6       deraadt   226: located in Brighton, UK;
1.41      brad      227: maintained by <a href="mailto:brian@openbsd.org">Brian Somers</a>.<br>
1.21      naddy     228: Updated every 2 hours.
1.1       brian     229: <p>
1.7       brian     230: Available collections:
1.1       brian     231: <table>
1.9       naddy     232: <tr><td width="20"></td>
                    233:     <td><strong>OpenBSD-src</strong></td>
                    234:     <td>- The <b>src</b> repository</td></tr>
                    235: <tr><td></td>
                    236:     <td><strong>OpenBSD-ports</strong></td>
                    237:     <td>- The <b>ports</b> repository</td></tr>
                    238: <tr><td></td>
                    239:     <td><strong>OpenBSD-www</strong></td>
                    240:     <td>- The <b>www</b> repository</td></tr>
                    241: <tr><td></td>
                    242:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     243:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    244: <tr><td></td>
                    245:     <td><strong>OpenBSD-xf4</strong></td>
                    246:     <td>- The <b>XFree86-4</b> repository</td></tr>
1.9       naddy     247: <tr><td></td>
                    248:     <td><strong>OpenBSD-all</strong></td>
                    249:     <td>- All OpenBSD repositories</td></tr>
1.1       brian     250: </table>
1.7       brian     251: </dd>
                    252: </dl>
1.1       brian     253:
1.7       brian     254: <dl>
1.79      naddy     255: <dt><a href="http://cvsup.de.openbsd.org"><strong>cvsup.de.openbsd.org</strong></a></dt>
1.7       brian     256: <dd><p>
1.41      brad      257: located in Munich, Germany;
                    258: maintained by <a href="mailto:dl@leo.org">Daniel Lang</a>.<br>
                    259: Updated every 24 hours.
1.5       ericj     260: <p>
1.7       brian     261: Available collections:
1.5       ericj     262: <table>
1.9       naddy     263: <tr><td width="20"></td>
                    264:     <td><strong>OpenBSD-src</strong></td>
                    265:     <td>- The <b>src</b> repository</td></tr>
                    266: <tr><td></td>
                    267:     <td><strong>OpenBSD-ports</strong></td>
                    268:     <td>- The <b>ports</b> repository</td></tr>
                    269: <tr><td></td>
                    270:     <td><strong>OpenBSD-www</strong></td>
                    271:     <td>- The <b>www</b> repository</td></tr>
                    272: <tr><td></td>
                    273:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     274:     <td>- The <b>XFree86-3</b> repository</td></tr>
1.9       naddy     275: <tr><td></td>
1.41      brad      276:     <td><strong>OpenBSD-xf4</strong></td>
                    277:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    278: <tr><td></td>
1.9       naddy     279:     <td><strong>OpenBSD-all</strong></td>
                    280:     <td>- All OpenBSD repositories</td></tr>
1.5       ericj     281: </table>
1.7       brian     282: </dd>
                    283: </dl>
1.1       brian     284:
1.7       brian     285: <dl>
1.41      brad      286: <dt><strong>cvsup.hu.openbsd.org</strong></dt>
1.18      beck      287: <dd><p>
1.41      brad      288: located in Hungary;
                    289: maintained by <a href="mailto:mohacsi@hera.ik.bme.hu">Mohacsi Janos</a>.<br>
                    290: Updated every 4 hours.
1.18      beck      291: <p>
                    292: Available collections:
                    293: <table>
                    294: <tr><td width="20"></td>
                    295:     <td><strong>OpenBSD-src</strong></td>
                    296:     <td>- The <b>src</b> repository</td></tr>
                    297: <tr><td></td>
                    298:     <td><strong>OpenBSD-ports</strong></td>
                    299:     <td>- The <b>ports</b> repository</td></tr>
                    300: <tr><td></td>
                    301:     <td><strong>OpenBSD-www</strong></td>
                    302:     <td>- The <b>www</b> repository</td></tr>
                    303: <tr><td></td>
1.19      brian     304:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     305:     <td>- The <b>XFree86-3</b> repository</td></tr>
1.19      brian     306: <tr><td></td>
1.18      beck      307:     <td><strong>OpenBSD-all</strong></td>
                    308:     <td>- All OpenBSD repositories</td></tr>
                    309: </table>
                    310: </dd>
                    311: </dl>
                    312:
                    313: <dl>
1.41      brad      314: <dt><strong>cvsup.usa.openbsd.org</strong></dt>
1.14      brian     315: <dd><p>
1.41      brad      316: located in West Lafayette, Indiana, USA;
1.21      naddy     317: maintained by <a href="mailto:will@csociety.ecn.purdue.edu">Will Andrews</a>.<br>
1.14      brian     318: Updated every 2 hours.
                    319: <p>
                    320: Available collections:
                    321: <table>
                    322: <tr><td width="20"></td>
                    323:     <td><strong>OpenBSD-src</strong></td>
                    324:     <td>- The <b>src</b> repository</td>
                    325: <tr><td></td>
                    326:     <td><strong>OpenBSD-ports</strong></td>
                    327:     <td>- The <b>ports</b> repository</td></tr>
                    328: <tr><td></td>
                    329:     <td><strong>OpenBSD-www</strong></td>
                    330:     <td>- The <b>www</b> repository</td></tr>
                    331: <tr><td></td>
                    332:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     333:     <td>- The <b>XFree86-3</b> repository</td></tr>
1.14      brian     334: <tr><td></td>
1.23      naddy     335:     <td><strong>OpenBSD-xf4</strong></td>
                    336:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    337: <tr><td></td>
1.14      brian     338:     <td><strong>OpenBSD-all</strong></td>
                    339:     <td>- All OpenBSD repositories</td></tr>
                    340: </table>
                    341: </dd>
                    342: </dl>
                    343:
1.26      brian     344: <dl>
1.76      millert   345: <dt><strong>anoncvs1.usa.openbsd.org</strong></dt>
                    346: <dd><p>
                    347: located in Redwood City, California, western USA;
                    348: maintained by <a href="mailto:millert@openbsd.org">Todd Miller</a>.<br>
                    349: Updated every 2 hours.
                    350: <p>
                    351: Available collections:
                    352: <table>
                    353: <tr><td width="20"></td>
                    354:     <td><strong>OpenBSD-src</strong></td>
                    355:     <td>- The <b>src</b> repository</td>
                    356: <tr><td></td>
                    357:     <td><strong>OpenBSD-ports</strong></td>
                    358:     <td>- The <b>ports</b> repository</td></tr>
                    359: <tr><td></td>
                    360:     <td><strong>OpenBSD-www</strong></td>
                    361:     <td>- The <b>www</b> repository</td></tr>
                    362: <tr><td></td>
                    363:     <td><strong>OpenBSD-x11</strong></td>
                    364:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    365: <tr><td></td>
                    366:     <td><strong>OpenBSD-xf4</strong></td>
                    367:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    368: <tr><td></td>
                    369:     <td><strong>OpenBSD-all</strong></td>
                    370:     <td>- All OpenBSD repositories</td></tr>
                    371: </table>
                    372: </dd>
                    373: </dl>
                    374:
                    375: <dl>
1.77      millert   376: <dt><strong>anoncvs3.usa.openbsd.org</strong></dt>
1.76      millert   377: <dd><p>
                    378: located at the University of Colorado, Boulder, western USA;
                    379: maintained by <a href="mailto:millert@openbsd.org">Todd Miller</a>.<br>
                    380: Updated every 2 hours.
                    381: <p>
                    382: Available collections:
                    383: <table>
                    384: <tr><td width="20"></td>
                    385:     <td><strong>OpenBSD-src</strong></td>
                    386:     <td>- The <b>src</b> repository</td>
                    387: <tr><td></td>
                    388:     <td><strong>OpenBSD-ports</strong></td>
                    389:     <td>- The <b>ports</b> repository</td></tr>
                    390: <tr><td></td>
                    391:     <td><strong>OpenBSD-www</strong></td>
                    392:     <td>- The <b>www</b> repository</td></tr>
                    393: <tr><td></td>
                    394:     <td><strong>OpenBSD-x11</strong></td>
                    395:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    396: <tr><td></td>
                    397:     <td><strong>OpenBSD-xf4</strong></td>
                    398:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    399: <tr><td></td>
                    400:     <td><strong>OpenBSD-all</strong></td>
                    401:     <td>- All OpenBSD repositories</td></tr>
                    402: </table>
                    403: </dd>
                    404: </dl>
                    405:
1.27      brian     406: <dl>
1.41      brad      407: <dt><a href="http://cvsup.no.openbsd.org/"><strong>cvsup.no.openbsd.org</strong></a></dt>
1.27      brian     408: <dd><p>
1.43      heko      409: located in Oslo, Norway;
1.27      brian     410: maintained by <a href="mailto:anders@fix.no">Anders Nordby</a>.<br>
1.29      brian     411: Updated every 3 hours.
1.27      brian     412: <p>
                    413: Available collections:
                    414: <table>
                    415: <tr><td width="20"></td>
                    416:     <td><strong>OpenBSD-src</strong></td>
                    417:     <td>- The <b>src</b> repository</td>
                    418: <tr><td></td>
                    419:     <td><strong>OpenBSD-ports</strong></td>
                    420:     <td>- The <b>ports</b> repository</td></tr>
                    421: <tr><td></td>
                    422:     <td><strong>OpenBSD-www</strong></td>
                    423:     <td>- The <b>www</b> repository</td></tr>
                    424: <tr><td></td>
                    425:     <td><strong>OpenBSD-x11</strong></td>
                    426:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    427: <tr><td></td>
                    428:     <td><strong>OpenBSD-xf4</strong></td>
                    429:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    430: <tr><td></td>
                    431:     <td><strong>OpenBSD-all</strong></td>
                    432:     <td>- All OpenBSD repositories</td></tr>
                    433: </table>
                    434: </dd>
                    435: </dl>
                    436:
1.30      brian     437: <dl>
1.41      brad      438: <dt><a href="http://cvsup.pt.openbsd.org/"><strong>cvsup.pt.openbsd.org</strong></a></dt>
1.30      brian     439: <dd><p>
                    440: located at the University of Coimbra, Portugal;
1.36      brian     441: maintained by <a href="mailto:jpedras@webvolution.net">Jo&atilde;o Pedras</a>.<br>
1.30      brian     442: Updated every 3 hours.
                    443: <p>
                    444: Available collections:
                    445: <table>
                    446: <tr><td width="20"></td>
                    447:     <td><strong>OpenBSD-src</strong></td>
                    448:     <td>- The <b>src</b> repository</td>
                    449: <tr><td></td>
                    450:     <td><strong>OpenBSD-ports</strong></td>
                    451:     <td>- The <b>ports</b> repository</td></tr>
                    452: <tr><td></td>
                    453:     <td><strong>OpenBSD-www</strong></td>
                    454:     <td>- The <b>www</b> repository</td></tr>
                    455: <tr><td></td>
                    456:     <td><strong>OpenBSD-x11</strong></td>
                    457:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    458: <tr><td></td>
                    459:     <td><strong>OpenBSD-xf4</strong></td>
                    460:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    461: <tr><td></td>
                    462:     <td><strong>OpenBSD-all</strong></td>
                    463:     <td>- All OpenBSD repositories</td></tr>
                    464: </table>
                    465: </dd>
                    466: </dl>
1.47      brian     467:
1.37      brian     468: <dl>
1.51      naddy     469: <dt><a href="http://anoncvs.de.openbsd.org"><strong>anoncvs.de.openbsd.org</strong></a></dt>
                    470: <dd><p>
1.70      naddy     471: also known as <strong>grappa.unix-ag.uni-kl.de</strong>.<br>
1.51      naddy     472: located at the University of Kaiserslautern, Germany;
1.70      naddy     473: maintained by <a href="mailto:naddy@openbsd.org">Christian Weisgerber</a>.<br>
1.81      naddy     474: Updated every 6 hours.
1.51      naddy     475: <p>
                    476: Available collections:
                    477: <table>
                    478: <tr><td width="20"></td>
                    479:     <td><strong>OpenBSD-src</strong></td>
                    480:     <td>- The <b>src</b> repository</td></tr>
                    481: <tr><td></td>
                    482:     <td><strong>OpenBSD-ports</strong></td>
                    483:     <td>- The <b>ports</b> repository</td></tr>
                    484: <tr><td></td>
                    485:     <td><strong>OpenBSD-www</strong></td>
                    486:     <td>- The <b>www</b> repository</td></tr>
                    487: <tr><td></td>
                    488:     <td><strong>OpenBSD-x11</strong></td>
                    489:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    490: <tr><td></td>
                    491:     <td><strong>OpenBSD-xf4</strong></td>
                    492:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    493: <tr><td></td>
                    494:     <td><strong>OpenBSD-all</strong></td>
                    495:     <td>- All OpenBSD repositories</td></tr>
                    496: </table>
                    497: </dd>
                    498: </dl>
                    499:
                    500: <dl>
1.37      brian     501: <dt><a href="http://rt.fm/cvsup.html"><strong>rt.fm</strong></a></dt>
                    502: <dd><p>
1.38      brian     503: located at Lake in the Hills, Illinois, USA;
1.37      brian     504: maintained by <a href="mailto:jcs@rt.fm">Joshua Stein</a>.<br>
1.38      brian     505: Updated every 2 hours.
1.37      brian     506: <p>
                    507: Available collections:
                    508: <table>
                    509: <tr><td width="20"></td>
                    510:     <td><strong>OpenBSD-src</strong></td>
                    511:     <td>- The <b>src</b> repository</td>
                    512: <tr><td></td>
                    513:     <td><strong>OpenBSD-ports</strong></td>
                    514:     <td>- The <b>ports</b> repository</td></tr>
                    515: <tr><td></td>
                    516:     <td><strong>OpenBSD-www</strong></td>
                    517:     <td>- The <b>www</b> repository</td></tr>
                    518: <tr><td></td>
                    519:     <td><strong>OpenBSD-x11</strong></td>
                    520:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    521: <tr><td></td>
                    522:     <td><strong>OpenBSD-xf4</strong></td>
                    523:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    524: <tr><td></td>
                    525:     <td><strong>OpenBSD-all</strong></td>
                    526:     <td>- All OpenBSD repositories</td></tr>
                    527: </table>
                    528: </dd>
                    529: </dl>
1.30      brian     530:
1.47      brian     531: <dl>
1.44      brian     532: <dt><strong>skeleton.phys.spbu.ru</strong></dt>
                    533: <dd><p>
1.46      brian     534: located in St. Petersburg State University, St. Petersburg, Russia;
1.44      brian     535: maintained by <a href="mailto:kab00m@lich.phys.spbu.ru">Dima Veselov</a>.<br>
                    536: Updated every 4 hours.
                    537: <p>
                    538: Available collections:
                    539: <table>
1.49      jufi      540: <tr><td width="20"></td>
1.44      brian     541:     <td><strong>OpenBSD-ports</strong></td>
                    542:     <td>- The <b>ports</b> repository</td></tr>
                    543: </table>
                    544: </dd>
                    545: </dl>
                    546:
1.52      brian     547: <dl>
1.58      naddy     548: <dt><strong>cvsup.jp.OpenBSD.org</strong></dt>
1.52      brian     549: <dd><p>
                    550: located at Otemachi, Tokyo, Japan;
1.57      brian     551: maintained by <a href="mailto:cvsupadm@openbsd.bsdlab.org">CVSup Administrator</a>.<br>
1.52      brian     552: Updated every 3 hours.
                    553: <p>
                    554: Available collections:
                    555: <table>
                    556: <tr><td width="20"></td>
                    557:     <td><strong>OpenBSD-src</strong></td>
                    558:     <td>- The <b>src</b> repository</td>
                    559: <tr><td></td>
                    560:     <td><strong>OpenBSD-ports</strong></td>
                    561:     <td>- The <b>ports</b> repository</td></tr>
                    562: <tr><td></td>
                    563:     <td><strong>OpenBSD-www</strong></td>
                    564:     <td>- The <b>www</b> repository</td></tr>
                    565: <tr><td></td>
                    566:     <td><strong>OpenBSD-x11</strong></td>
                    567:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    568: <tr><td></td>
                    569:     <td><strong>OpenBSD-xf4</strong></td>
                    570:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    571: <tr><td></td>
                    572:     <td><strong>OpenBSD-all</strong></td>
                    573:     <td>- All OpenBSD repositories</td></tr>
                    574: </table>
                    575: </dd>
                    576: </dl>
                    577:
1.54      brian     578: <dl>
1.73      kevlo     579: <dt><strong>cvsup.tw.OpenBSD.org</strong></dt>
                    580: <dd><p>
                    581: located at National Chiao-Tung University, Taiwan;
                    582: maintained by <a href="mailto:ijliao@FreeBSD.org">Ying-Chieh Liao</a>.<br>
                    583: Updated every 2 hours.
                    584: <p>
                    585: Available collections:
                    586: <table>
                    587: <tr><td width="20"></td>
                    588:     <td><strong>OpenBSD-src</strong></td>
                    589:     <td>- The <b>src</b> repository</td>
                    590: <tr><td></td>
                    591:     <td><strong>OpenBSD-ports</strong></td>
                    592:     <td>- The <b>ports</b> repository</td></tr>
                    593: <tr><td></td>
                    594:     <td><strong>OpenBSD-www</strong></td>
                    595:     <td>- The <b>www</b> repository</td></tr>
                    596: <tr><td></td>
                    597:     <td><strong>OpenBSD-x11</strong></td>
                    598:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    599: <tr><td></td>
                    600:     <td><strong>OpenBSD-xf4</strong></td>
                    601:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    602: <tr><td></td>
                    603:     <td><strong>OpenBSD-all</strong></td>
                    604:     <td>- All OpenBSD repositories</td></tr>
                    605: </table>
                    606: </dd>
                    607: </dl>
                    608:
                    609: <dl>
1.58      naddy     610: <dt><strong>wiretapped.net</strong></dt>
1.54      brian     611: <dd><p>
                    612: located in Sydney Australia;
                    613: maintained by <a href="mailto:gbayley@ausmac.net">Grant Bayley</a>.<br>
                    614: Updated every 6 hours.
                    615: <p>
                    616: Available collections:
                    617: <table>
                    618: <tr><td width="20"></td>
                    619:     <td><strong>OpenBSD-src</strong></td>
                    620:     <td>- The <b>src</b> repository</td>
                    621: <tr><td></td>
                    622:     <td><strong>OpenBSD-ports</strong></td>
                    623:     <td>- The <b>ports</b> repository</td></tr>
                    624: <tr><td></td>
                    625:     <td><strong>OpenBSD-www</strong></td>
                    626:     <td>- The <b>www</b> repository</td></tr>
                    627: <tr><td></td>
                    628:     <td><strong>OpenBSD-x11</strong></td>
                    629:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    630: <tr><td></td>
                    631:     <td><strong>OpenBSD-xf4</strong></td>
                    632:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    633: <tr><td></td>
                    634:     <td><strong>OpenBSD-all</strong></td>
                    635:     <td>- All OpenBSD repositories</td></tr>
                    636: </table>
                    637: </dd>
                    638: </dl>
                    639:
1.63      beck      640: <dl>
                    641: <dt><a href="http://mirror.osn.de/"><strong>mirror.osn.de</strong></a></dt>
                    642: <dd><p>
                    643: located in Germany
                    644: maintained by <a href="mailto:aw@osn.de">Armin Wolfermann</a>.<br>
                    645: Updated every 4 hours.
                    646: <p>
                    647: Available collections:
                    648: <table>
                    649: <tr><td width="20"></td>
                    650:     <td><strong>OpenBSD-src</strong></td>
                    651:     <td>- The <b>src</b> repository</td>
                    652: <tr><td></td>
                    653:     <td><strong>OpenBSD-ports</strong></td>
                    654:     <td>- The <b>ports</b> repository</td></tr>
                    655: <tr><td></td>
                    656:     <td><strong>OpenBSD-www</strong></td>
                    657:     <td>- The <b>www</b> repository</td></tr>
                    658: <tr><td></td>
                    659:     <td><strong>OpenBSD-x11</strong></td>
                    660:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    661: <tr><td></td>
                    662:     <td><strong>OpenBSD-xf4</strong></td>
                    663:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    664: <tr><td></td>
                    665:     <td><strong>OpenBSD-all</strong></td>
                    666:     <td>- All OpenBSD repositories</td></tr>
                    667: </table>
                    668: </dd>
                    669: </dl>
                    670:
1.65      naddy     671: <dl>
1.75      nick      672: <dt><strong>cvsup2.de.openbsd.org</strong></dt>
1.65      naddy     673: <dd><p>
1.75      nick      674: also known as <strong>openbsd.informatik.uni-erlangen.de</strong>.<br>
1.65      naddy     675: located at the University of Erlangen, Germany;
1.90      grunk     676: maintained by <a href="mailto:grunk@openbsd.org">Alexander von Gernler</a>
                    677: and <a href="mailto:stuka@pestilenz.org">Christian Kollee</a>.<br>
1.80      naddy     678: Updated every 2 hours.
1.65      naddy     679: <p>
                    680: Available collections:
                    681: <table>
                    682: <tr><td width="20"></td>
                    683:     <td><strong>OpenBSD-src</strong></td>
                    684:     <td>- The <b>src</b> repository</td></tr>
                    685: <tr><td></td>
                    686:     <td><strong>OpenBSD-ports</strong></td>
                    687:     <td>- The <b>ports</b> repository</td></tr>
                    688: <tr><td></td>
                    689:     <td><strong>OpenBSD-www</strong></td>
                    690:     <td>- The <b>www</b> repository</td></tr>
                    691: <tr><td></td>
                    692:     <td><strong>OpenBSD-x11</strong></td>
                    693:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    694: <tr><td></td>
                    695:     <td><strong>OpenBSD-xf4</strong></td>
                    696:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    697: <tr><td></td>
                    698:     <td><strong>OpenBSD-all</strong></td>
                    699:     <td>- All OpenBSD repositories</td></tr>
                    700: </table>
                    701: </dd>
                    702: </dl>
                    703:
1.78      pvalchev  704: <dl>
                    705: <dt><strong>cvsup.bg.openbsd.org</strong></dt>
                    706: <dd><p>
                    707: located in Plovdiv, Bulgaria,
                    708: maintained by <a href="mailto:veno@evrocom.net">Ventsislav Velkov</a>.<br>
                    709: Updated every 2 hours.
                    710: <p>
                    711: Available collections:
                    712: <table>
                    713: <tr><td width="20"></td>
                    714:     <td><strong>OpenBSD-src</strong></td>
                    715:     <td>- The <b>src</b> repository</td></tr>
                    716: <tr><td></td>
                    717:     <td><strong>OpenBSD-ports</strong></td>
                    718:     <td>- The <b>ports</b> repository</td></tr>
                    719: <tr><td></td>
                    720:     <td><strong>OpenBSD-www</strong></td>
                    721:     <td>- The <b>www</b> repository</td></tr>
                    722: <tr><td></td>
                    723:     <td><strong>OpenBSD-x11</strong></td>
                    724:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    725: <tr><td></td>
                    726:     <td><strong>OpenBSD-xf4</strong></td>
                    727:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    728: <tr><td></td>
                    729:     <td><strong>OpenBSD-all</strong></td>
                    730:     <td>- All OpenBSD repositories</td></tr>
                    731: </table>
                    732: </dd>
                    733: </dl>
                    734:
1.84      nick      735: <dl>
                    736: <dt><strong><a href="http://cvsup.open.bsd.lv">cvsup.open.bsd.lv</a></strong></dt>
                    737: <dd><p>
                    738: located in Riga, Latvia;
                    739: maintained by <a href="mailto:petruha@bsd.lv">Peter Dunaskin</a>.<br>
                    740: Updated every 2 hours.
                    741: <p>
                    742: Available collections:
                    743: <table>
                    744: <tr><td width="20"></td>
                    745:     <td><strong>OpenBSD-src</strong></td>
                    746:     <td>- The <b>src</b> repository</td></tr>
                    747: <tr><td></td>
                    748:     <td><strong>OpenBSD-ports</strong></td>
                    749:     <td>- The <b>ports</b> repository</td></tr>
                    750: <tr><td></td>
                    751:     <td><strong>OpenBSD-www</strong></td>
                    752:     <td>- The <b>www</b> repository</td></tr>
                    753: <tr><td></td>
                    754:     <td><strong>OpenBSD-x11</strong></td>
                    755:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    756: <tr><td></td>
                    757:     <td><strong>OpenBSD-xf4</strong></td>
                    758:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    759: <tr><td></td>
                    760:     <td><strong>OpenBSD-all</strong></td>
                    761:     <td>- All OpenBSD repositories</td></tr>
                    762: </table>
                    763: </dd>
                    764: </dl>
                    765:
1.91      grunk     766: <dl>
                    767: <dt><strong>rudy.mif.pg.gda.pl</strong></dt>
                    768: <dd><p>
                    769: located at the Gdansk University of Technology, Poland;
1.92      grunk     770: maintained by <a href="mailto:szati@rudy.mif.pg.gda.pl">Lukasz Sztachanski</a>.
1.91      grunk     771: <br>
                    772: Updated every 2 hours.
                    773: <p>
                    774: Available collections:
                    775: <table>
                    776: <tr><td width="20"></td>
                    777:     <td><strong>OpenBSD-src</strong></td>
                    778:     <td>- The <b>src</b> repository</td></tr>
                    779: <tr><td></td>
                    780:     <td><strong>OpenBSD-ports</strong></td>
                    781:     <td>- The <b>ports</b> repository</td></tr>
                    782: <tr><td></td>
                    783:     <td><strong>OpenBSD-www</strong></td>
                    784:     <td>- The <b>www</b> repository</td></tr>
                    785: <tr><td></td>
                    786:     <td><strong>OpenBSD-x11</strong></td>
                    787:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    788: <tr><td></td>
                    789:     <td><strong>OpenBSD-xf4</strong></td>
                    790:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    791: <tr><td></td>
                    792:     <td><strong>OpenBSD-all</strong></td>
                    793:     <td>- All OpenBSD repositories</td></tr>
                    794: </table>
                    795: </dd>
                    796: </dl>
                    797:
1.95      grunk     798: <dl>
                    799: <dt><strong>mirror.public-internet.co.uk</strong></dt>
                    800: <dd><p>
                    801: located at London, UK;
                    802: maintained by <a href="mailto:tom.beard@public-internet.co.uk">Tom Beard</a>.
                    803: <br>
                    804: Updated every 2 hours from cvsup2.de.openbsd.org.
                    805: <p>
                    806: Available collections:
                    807: <table>
                    808: <tr><td width="20"></td>
                    809:     <td><strong>OpenBSD-src</strong></td>
                    810:     <td>- The <b>src</b> repository</td></tr>
                    811: <tr><td></td>
                    812:     <td><strong>OpenBSD-ports</strong></td>
                    813:     <td>- The <b>ports</b> repository</td></tr>
                    814: <tr><td></td>
                    815:     <td><strong>OpenBSD-www</strong></td>
                    816:     <td>- The <b>www</b> repository</td></tr>
                    817: <tr><td></td>
                    818:     <td><strong>OpenBSD-x11</strong></td>
                    819:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    820: <tr><td></td>
                    821:     <td><strong>OpenBSD-xf4</strong></td>
                    822:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    823: <tr><td></td>
                    824:     <td><strong>OpenBSD-all</strong></td>
                    825:     <td>- All OpenBSD repositories</td></tr>
                    826: </table>
                    827: </dd>
                    828: </dl>
                    829:
1.96    ! grunk     830: <dl>
        !           831: <dt><strong>anoncvs.openbsd.org.ua</strong></dt>
        !           832: <dd><p>
        !           833: located in Kiev, Ukraine;
        !           834: maintained by <a href="mailto:hunter@mirotel.net">Sergey Smitienko</a>.
        !           835: <br>
        !           836: Updated every 6 hours.
        !           837: <p>
        !           838: Available collections:
        !           839: <table>
        !           840: <tr><td width="20"></td>
        !           841:     <td><strong>OpenBSD-src</strong></td>
        !           842:     <td>- The <b>src</b> repository</td></tr>
        !           843: <tr><td></td>
        !           844:     <td><strong>OpenBSD-ports</strong></td>
        !           845:     <td>- The <b>ports</b> repository</td></tr>
        !           846: <tr><td></td>
        !           847:     <td><strong>OpenBSD-www</strong></td>
        !           848:     <td>- The <b>www</b> repository</td></tr>
        !           849: <tr><td></td>
        !           850:     <td><strong>OpenBSD-x11</strong></td>
        !           851:     <td>- The <b>XFree86-3</b> repository</td></tr>
        !           852: <tr><td></td>
        !           853:     <td><strong>OpenBSD-xf4</strong></td>
        !           854:     <td>- The <b>XFree86-4</b> repository</td></tr>
        !           855: <tr><td></td>
        !           856:     <td><strong>OpenBSD-all</strong></td>
        !           857:     <td>- All OpenBSD repositories</td></tr>
        !           858: </table>
        !           859: </dd>
        !           860: </dl>
        !           861:
1.1       brian     862: <p>
1.87      joel      863: <em>Note:</em> If your server is listed on here with inaccurate or
                    864: unknown information, please contact
                    865: <a href="mailto:www@openbsd.org"><tt>www@openbsd.org</tt></a>.
1.1       brian     866: <p>
1.58      naddy     867: You may want to use <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=traceroute&amp;sektion=8">traceroute(8)</a>
1.39      horacio   868: to find out which server is nearest you.
1.1       brian     869: Problems with a server should be reported to the <b>maintainer</b> of the
                    870: server in question.
                    871: <p>
1.96    ! grunk     872: As of December 12, 2005, the CVS repository sizes are
1.4       brian     873: <table>
1.9       naddy     874: <tr><td width="20"></td>
1.20      brian     875:     <td><strong>OpenBSD-ports</strong></td>
1.96    ! grunk     876:     <td>- <b>204</b>MB</td></tr>
1.9       naddy     877: <tr><td></td>
1.20      brian     878:     <td><strong>OpenBSD-src</strong></td>
1.96    ! grunk     879:     <td>- <b>1369</b>MB</td></tr>
1.9       naddy     880: <tr><td></td>
1.20      brian     881:     <td><strong>OpenBSD-www</strong></td>
1.96    ! grunk     882:     <td>- <b>236</b>MB</td></tr>
1.9       naddy     883: <tr><td></td>
1.20      brian     884:     <td><strong>OpenBSD-x11</strong></td>
1.68      naddy     885:     <td>- <b>200</b>MB</td></tr>
1.20      brian     886: <tr><td></td>
                    887:     <td><strong>OpenBSD-xf4</strong></td>
1.96    ! grunk     888:     <td>- <b>531</b>MB</td></tr>
1.4       brian     889: </table>
                    890: <p>
1.96    ! grunk     891: There is an additional overhead of <b>301</b>MB for the CVSROOT
1.68      naddy     892: directory.  The overall repository size currently increases at a rate
1.85      nick      893: of about <b>400</b>MB per annum.
1.4       brian     894: <p>
1.1       brian     895: <strong>IMPORTANT NOTE:</strong>
                    896: There are a few issues relating to cryptographic software that everyone
                    897: should be aware of:
                    898: <ul>
1.9       naddy     899:   <li>
                    900:     <p>
                    901:     The OpenBSD sources are from Canada. As
1.67      nick      902:     <a href="http://www.efc.ca/pages/doc/crypto-export.html">
1.9       naddy     903:     researched by a Canadian individual</a> and as
                    904:     <a href="http://axion.physics.ubc.ca/ECL.html">
                    905:     described in the Export Control list of Canada</a>,
                    906:     it is legal to export crypto software from Canada to the world.
                    907:   </li>
                    908:   <li>
                    909:     <p>
                    910:     However, if you are outside the USA or Canada, you should not
1.72      naddy     911:     fetch the cryptographic sections of the OpenBSD sources from a
                    912:     CVSup server located in the USA. The files in question are...
1.9       naddy     913:     <ul>
                    914:       <li><tt>src/kerberosIV/*</tt></li>
1.56      miod      915:       <li><tt>src/kerberosV/*</tt></li>
1.9       naddy     916:       <li><tt>src/lib/libdes/*</tt></li>
                    917:       <li><tt>src/lib/libc/crypt/crypt.c</tt></li>
                    918:       <li><tt>src/lib/libc/crypt/morecrypt.c</tt></li>
1.56      miod      919:       <li><tt>src/sys/crypto</tt></li>
1.9       naddy     920:       <li><tt>src/sys/netinet</tt></li>
                    921:       <li><tt>src/usr.sbin/afs/src/rxkad/*</tt></li>
1.56      miod      922:       <li><tt>XF4/xc-mit/lib/Xdmcp/Wraphelp.c</tt></li>
                    923:       <li><tt>XF4/xc-old/lib/Xdmcp/Wraphelp.c</tt></li>
                    924:       <li><tt>XF4/xc/lib/Xdmcp/Wraphelp.c</tt></li>
1.9       naddy     925:     </ul>
                    926:     <p>
                    927:     Because of the USA ITAR munitions list,
                    928:     crypto software may only be exported to Canada from the USA.
                    929:   </li>
1.1       brian     930: </ul>
                    931:
                    932: <p>
                    933: The OpenBSD project is looking for more CVSup servers -- if you are
1.87      joel      934: interested, please contact
                    935: <a href="mailto:www@openbsd.org"><tt>www@openbsd.org</tt></a>
1.1       brian     936: for configuration details.
                    937:
1.21      naddy     938: <hr>
                    939: <a href="index.html"><img height="24" width="24" src="back.gif" border="0" alt="OpenBSD"></a>
1.7       brian     940: <a href="mailto:www@openbsd.org">www@openbsd.org</a>
1.96    ! grunk     941: <br><small>$OpenBSD: cvsup.html,v 1.95 2005/10/31 17:40:57 grunk Exp $</small>
1.1       brian     942:
                    943: </body>
                    944: </html>