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

Annotation of www/cvsup.html, Revision 1.98

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.98    ! ray       153: It is now simple to check out any one of the CVSup'ed repositories:
1.7       brian     154: <pre>
                    155:         # cd /usr
1.98    ! ray       156:         # cvs -d /cvs checkout src
1.7       brian     157: </pre>
1.1       brian     158:
                    159: <p>
1.7       brian     160: The above will check out the most current sources. Many of you will only
1.1       brian     161: want the release sources, especially if you are patching your system.  To
                    162: checkout release sources you must specify a tag along with your command.
                    163: For example:
1.7       brian     164: <pre>
                    165:         # cd /usr
1.98    ! ray       166:         # cvs -d /cvs checkout -rOPENBSD_3_7 src
1.7       brian     167: </pre>
                    168: <p>
1.94      grunk     169: Or <tt>OPENBSD_3_6</tt> for 3.6, etc.
1.7       brian     170:
1.21      naddy     171: <h3><a name="checkout"><font color="#0000e0">Running CVSup in
1.7       brian     172: Checkout Mode</font></a></h3>
1.1       brian     173:
                    174: <p>
1.7       brian     175: As an alternative to getting the repository and using CVS, you can
                    176: run CVSup in checkout mode by adding a <tt>tag</tt> or <tt>date</tt>
                    177: keyword to your supfile, either as a <tt>*default</tt> or as an
                    178: option to a collection. In particular, you can use this to efficiently
                    179: update the source and ports trees shipped on the <a
                    180: href="orders.html">CDROMs</a>.
                    181: <p>
                    182: The following supfile could be used to update your ports tree:
                    183: <pre>
                    184:         # Defaults that apply to all the collections
                    185:         *default host=cvsup.uk.openbsd.org
                    186:         *default base=/var
                    187:         *default prefix=/usr
                    188:         *default release=cvs
                    189:         *default delete use-rel-suffix compress
                    190:
                    191:         # Ports Collection.
                    192:         OpenBSD-ports tag=.
                    193: </pre>
                    194: <p>
                    195: Any CVS symbolic tag can be used.  A single period "." means HEAD,
                    196: i.e. the newest revision of all files in the main branch.  Take care
                    197: to specify an existing tag, as CVSup cannot distinguish valid from
                    198: invalid tags, and an attempt to synchronize an existing source tree
                    199: to an invalid tag will remove all files.
                    200: <p>
                    201: Alternatively, use the keyword <tt>date=[cc.]yy.mm.dd.hh.mm.ss</tt>
1.60      deraadt   202: to select a revision by date.  All 17 or 20 characters must be
1.7       brian     203: given as shown.  For the years 2000 and beyond, specify the century
                    204: <var>cc</var>.  For earlier years, specify only the last two digits
                    205: <var>yy</var>.  You may also combine the <tt>tag</tt> and <tt>date</tt>
                    206: keywords.
                    207:
1.1       brian     208:
1.2       brian     209: <h3>
1.21      naddy     210: <a name="CVSROOT"><font color="#0000e0">Available CVSup Servers</font></a>
1.2       brian     211: </h3>
1.1       brian     212:
1.74      xsa       213: <p>The following CVSup servers are available:
1.7       brian     214:
1.1       brian     215: <dl>
1.41      brad      216: <dt><a href="http://cvsup.uk.openbsd.org"><strong>cvsup.uk.openbsd.org</strong></a></dt>
1.7       brian     217: <dd><p>
1.6       deraadt   218: located in Brighton, UK;
1.41      brad      219: maintained by <a href="mailto:brian@openbsd.org">Brian Somers</a>.<br>
1.21      naddy     220: Updated every 2 hours.
1.1       brian     221: <p>
1.7       brian     222: Available collections:
1.1       brian     223: <table>
1.9       naddy     224: <tr><td width="20"></td>
                    225:     <td><strong>OpenBSD-src</strong></td>
                    226:     <td>- The <b>src</b> repository</td></tr>
                    227: <tr><td></td>
                    228:     <td><strong>OpenBSD-ports</strong></td>
                    229:     <td>- The <b>ports</b> repository</td></tr>
                    230: <tr><td></td>
                    231:     <td><strong>OpenBSD-www</strong></td>
                    232:     <td>- The <b>www</b> repository</td></tr>
                    233: <tr><td></td>
                    234:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     235:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    236: <tr><td></td>
                    237:     <td><strong>OpenBSD-xf4</strong></td>
                    238:     <td>- The <b>XFree86-4</b> repository</td></tr>
1.9       naddy     239: <tr><td></td>
                    240:     <td><strong>OpenBSD-all</strong></td>
                    241:     <td>- All OpenBSD repositories</td></tr>
1.1       brian     242: </table>
1.7       brian     243: </dd>
                    244: </dl>
1.1       brian     245:
1.7       brian     246: <dl>
1.79      naddy     247: <dt><a href="http://cvsup.de.openbsd.org"><strong>cvsup.de.openbsd.org</strong></a></dt>
1.7       brian     248: <dd><p>
1.41      brad      249: located in Munich, Germany;
                    250: maintained by <a href="mailto:dl@leo.org">Daniel Lang</a>.<br>
                    251: Updated every 24 hours.
1.5       ericj     252: <p>
1.7       brian     253: Available collections:
1.5       ericj     254: <table>
1.9       naddy     255: <tr><td width="20"></td>
                    256:     <td><strong>OpenBSD-src</strong></td>
                    257:     <td>- The <b>src</b> repository</td></tr>
                    258: <tr><td></td>
                    259:     <td><strong>OpenBSD-ports</strong></td>
                    260:     <td>- The <b>ports</b> repository</td></tr>
                    261: <tr><td></td>
                    262:     <td><strong>OpenBSD-www</strong></td>
                    263:     <td>- The <b>www</b> repository</td></tr>
                    264: <tr><td></td>
                    265:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     266:     <td>- The <b>XFree86-3</b> repository</td></tr>
1.9       naddy     267: <tr><td></td>
1.41      brad      268:     <td><strong>OpenBSD-xf4</strong></td>
                    269:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    270: <tr><td></td>
1.9       naddy     271:     <td><strong>OpenBSD-all</strong></td>
                    272:     <td>- All OpenBSD repositories</td></tr>
1.5       ericj     273: </table>
1.7       brian     274: </dd>
                    275: </dl>
1.1       brian     276:
1.7       brian     277: <dl>
1.41      brad      278: <dt><strong>cvsup.hu.openbsd.org</strong></dt>
1.18      beck      279: <dd><p>
1.41      brad      280: located in Hungary;
                    281: maintained by <a href="mailto:mohacsi@hera.ik.bme.hu">Mohacsi Janos</a>.<br>
                    282: Updated every 4 hours.
1.18      beck      283: <p>
                    284: Available collections:
                    285: <table>
                    286: <tr><td width="20"></td>
                    287:     <td><strong>OpenBSD-src</strong></td>
                    288:     <td>- The <b>src</b> repository</td></tr>
                    289: <tr><td></td>
                    290:     <td><strong>OpenBSD-ports</strong></td>
                    291:     <td>- The <b>ports</b> repository</td></tr>
                    292: <tr><td></td>
                    293:     <td><strong>OpenBSD-www</strong></td>
                    294:     <td>- The <b>www</b> repository</td></tr>
                    295: <tr><td></td>
1.19      brian     296:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     297:     <td>- The <b>XFree86-3</b> repository</td></tr>
1.19      brian     298: <tr><td></td>
1.18      beck      299:     <td><strong>OpenBSD-all</strong></td>
                    300:     <td>- All OpenBSD repositories</td></tr>
                    301: </table>
                    302: </dd>
                    303: </dl>
                    304:
                    305: <dl>
1.41      brad      306: <dt><strong>cvsup.usa.openbsd.org</strong></dt>
1.14      brian     307: <dd><p>
1.41      brad      308: located in West Lafayette, Indiana, USA;
1.21      naddy     309: maintained by <a href="mailto:will@csociety.ecn.purdue.edu">Will Andrews</a>.<br>
1.14      brian     310: Updated every 2 hours.
                    311: <p>
                    312: Available collections:
                    313: <table>
                    314: <tr><td width="20"></td>
                    315:     <td><strong>OpenBSD-src</strong></td>
                    316:     <td>- The <b>src</b> repository</td>
                    317: <tr><td></td>
                    318:     <td><strong>OpenBSD-ports</strong></td>
                    319:     <td>- The <b>ports</b> repository</td></tr>
                    320: <tr><td></td>
                    321:     <td><strong>OpenBSD-www</strong></td>
                    322:     <td>- The <b>www</b> repository</td></tr>
                    323: <tr><td></td>
                    324:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     325:     <td>- The <b>XFree86-3</b> repository</td></tr>
1.14      brian     326: <tr><td></td>
1.23      naddy     327:     <td><strong>OpenBSD-xf4</strong></td>
                    328:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    329: <tr><td></td>
1.14      brian     330:     <td><strong>OpenBSD-all</strong></td>
                    331:     <td>- All OpenBSD repositories</td></tr>
                    332: </table>
                    333: </dd>
                    334: </dl>
                    335:
1.26      brian     336: <dl>
1.76      millert   337: <dt><strong>anoncvs1.usa.openbsd.org</strong></dt>
                    338: <dd><p>
                    339: located in Redwood City, California, western USA;
                    340: maintained by <a href="mailto:millert@openbsd.org">Todd Miller</a>.<br>
                    341: Updated every 2 hours.
                    342: <p>
                    343: Available collections:
                    344: <table>
                    345: <tr><td width="20"></td>
                    346:     <td><strong>OpenBSD-src</strong></td>
                    347:     <td>- The <b>src</b> repository</td>
                    348: <tr><td></td>
                    349:     <td><strong>OpenBSD-ports</strong></td>
                    350:     <td>- The <b>ports</b> repository</td></tr>
                    351: <tr><td></td>
                    352:     <td><strong>OpenBSD-www</strong></td>
                    353:     <td>- The <b>www</b> repository</td></tr>
                    354: <tr><td></td>
                    355:     <td><strong>OpenBSD-x11</strong></td>
                    356:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    357: <tr><td></td>
                    358:     <td><strong>OpenBSD-xf4</strong></td>
                    359:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    360: <tr><td></td>
                    361:     <td><strong>OpenBSD-all</strong></td>
                    362:     <td>- All OpenBSD repositories</td></tr>
                    363: </table>
                    364: </dd>
                    365: </dl>
                    366:
                    367: <dl>
1.77      millert   368: <dt><strong>anoncvs3.usa.openbsd.org</strong></dt>
1.76      millert   369: <dd><p>
                    370: located at the University of Colorado, Boulder, western USA;
                    371: maintained by <a href="mailto:millert@openbsd.org">Todd Miller</a>.<br>
                    372: Updated every 2 hours.
                    373: <p>
                    374: Available collections:
                    375: <table>
                    376: <tr><td width="20"></td>
                    377:     <td><strong>OpenBSD-src</strong></td>
                    378:     <td>- The <b>src</b> repository</td>
                    379: <tr><td></td>
                    380:     <td><strong>OpenBSD-ports</strong></td>
                    381:     <td>- The <b>ports</b> repository</td></tr>
                    382: <tr><td></td>
                    383:     <td><strong>OpenBSD-www</strong></td>
                    384:     <td>- The <b>www</b> repository</td></tr>
                    385: <tr><td></td>
                    386:     <td><strong>OpenBSD-x11</strong></td>
                    387:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    388: <tr><td></td>
                    389:     <td><strong>OpenBSD-xf4</strong></td>
                    390:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    391: <tr><td></td>
                    392:     <td><strong>OpenBSD-all</strong></td>
                    393:     <td>- All OpenBSD repositories</td></tr>
                    394: </table>
                    395: </dd>
                    396: </dl>
                    397:
1.27      brian     398: <dl>
1.41      brad      399: <dt><a href="http://cvsup.no.openbsd.org/"><strong>cvsup.no.openbsd.org</strong></a></dt>
1.27      brian     400: <dd><p>
1.43      heko      401: located in Oslo, Norway;
1.27      brian     402: maintained by <a href="mailto:anders@fix.no">Anders Nordby</a>.<br>
1.29      brian     403: Updated every 3 hours.
1.27      brian     404: <p>
                    405: Available collections:
                    406: <table>
                    407: <tr><td width="20"></td>
                    408:     <td><strong>OpenBSD-src</strong></td>
                    409:     <td>- The <b>src</b> repository</td>
                    410: <tr><td></td>
                    411:     <td><strong>OpenBSD-ports</strong></td>
                    412:     <td>- The <b>ports</b> repository</td></tr>
                    413: <tr><td></td>
                    414:     <td><strong>OpenBSD-www</strong></td>
                    415:     <td>- The <b>www</b> repository</td></tr>
                    416: <tr><td></td>
                    417:     <td><strong>OpenBSD-x11</strong></td>
                    418:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    419: <tr><td></td>
                    420:     <td><strong>OpenBSD-xf4</strong></td>
                    421:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    422: <tr><td></td>
                    423:     <td><strong>OpenBSD-all</strong></td>
                    424:     <td>- All OpenBSD repositories</td></tr>
                    425: </table>
                    426: </dd>
                    427: </dl>
                    428:
1.30      brian     429: <dl>
1.41      brad      430: <dt><a href="http://cvsup.pt.openbsd.org/"><strong>cvsup.pt.openbsd.org</strong></a></dt>
1.30      brian     431: <dd><p>
                    432: located at the University of Coimbra, Portugal;
1.36      brian     433: maintained by <a href="mailto:jpedras@webvolution.net">Jo&atilde;o Pedras</a>.<br>
1.30      brian     434: Updated every 3 hours.
                    435: <p>
                    436: Available collections:
                    437: <table>
                    438: <tr><td width="20"></td>
                    439:     <td><strong>OpenBSD-src</strong></td>
                    440:     <td>- The <b>src</b> repository</td>
                    441: <tr><td></td>
                    442:     <td><strong>OpenBSD-ports</strong></td>
                    443:     <td>- The <b>ports</b> repository</td></tr>
                    444: <tr><td></td>
                    445:     <td><strong>OpenBSD-www</strong></td>
                    446:     <td>- The <b>www</b> repository</td></tr>
                    447: <tr><td></td>
                    448:     <td><strong>OpenBSD-x11</strong></td>
                    449:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    450: <tr><td></td>
                    451:     <td><strong>OpenBSD-xf4</strong></td>
                    452:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    453: <tr><td></td>
                    454:     <td><strong>OpenBSD-all</strong></td>
                    455:     <td>- All OpenBSD repositories</td></tr>
                    456: </table>
                    457: </dd>
                    458: </dl>
1.47      brian     459:
1.37      brian     460: <dl>
1.51      naddy     461: <dt><a href="http://anoncvs.de.openbsd.org"><strong>anoncvs.de.openbsd.org</strong></a></dt>
                    462: <dd><p>
1.70      naddy     463: also known as <strong>grappa.unix-ag.uni-kl.de</strong>.<br>
1.51      naddy     464: located at the University of Kaiserslautern, Germany;
1.70      naddy     465: maintained by <a href="mailto:naddy@openbsd.org">Christian Weisgerber</a>.<br>
1.81      naddy     466: Updated every 6 hours.
1.51      naddy     467: <p>
                    468: Available collections:
                    469: <table>
                    470: <tr><td width="20"></td>
                    471:     <td><strong>OpenBSD-src</strong></td>
                    472:     <td>- The <b>src</b> repository</td></tr>
                    473: <tr><td></td>
                    474:     <td><strong>OpenBSD-ports</strong></td>
                    475:     <td>- The <b>ports</b> repository</td></tr>
                    476: <tr><td></td>
                    477:     <td><strong>OpenBSD-www</strong></td>
                    478:     <td>- The <b>www</b> repository</td></tr>
                    479: <tr><td></td>
                    480:     <td><strong>OpenBSD-x11</strong></td>
                    481:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    482: <tr><td></td>
                    483:     <td><strong>OpenBSD-xf4</strong></td>
                    484:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    485: <tr><td></td>
                    486:     <td><strong>OpenBSD-all</strong></td>
                    487:     <td>- All OpenBSD repositories</td></tr>
                    488: </table>
                    489: </dd>
                    490: </dl>
                    491:
                    492: <dl>
1.37      brian     493: <dt><a href="http://rt.fm/cvsup.html"><strong>rt.fm</strong></a></dt>
                    494: <dd><p>
1.38      brian     495: located at Lake in the Hills, Illinois, USA;
1.37      brian     496: maintained by <a href="mailto:jcs@rt.fm">Joshua Stein</a>.<br>
1.38      brian     497: Updated every 2 hours.
1.37      brian     498: <p>
                    499: Available collections:
                    500: <table>
                    501: <tr><td width="20"></td>
                    502:     <td><strong>OpenBSD-src</strong></td>
                    503:     <td>- The <b>src</b> repository</td>
                    504: <tr><td></td>
                    505:     <td><strong>OpenBSD-ports</strong></td>
                    506:     <td>- The <b>ports</b> repository</td></tr>
                    507: <tr><td></td>
                    508:     <td><strong>OpenBSD-www</strong></td>
                    509:     <td>- The <b>www</b> repository</td></tr>
                    510: <tr><td></td>
                    511:     <td><strong>OpenBSD-x11</strong></td>
                    512:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    513: <tr><td></td>
                    514:     <td><strong>OpenBSD-xf4</strong></td>
                    515:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    516: <tr><td></td>
                    517:     <td><strong>OpenBSD-all</strong></td>
                    518:     <td>- All OpenBSD repositories</td></tr>
                    519: </table>
                    520: </dd>
                    521: </dl>
1.30      brian     522:
1.47      brian     523: <dl>
1.44      brian     524: <dt><strong>skeleton.phys.spbu.ru</strong></dt>
                    525: <dd><p>
1.46      brian     526: located in St. Petersburg State University, St. Petersburg, Russia;
1.44      brian     527: maintained by <a href="mailto:kab00m@lich.phys.spbu.ru">Dima Veselov</a>.<br>
                    528: Updated every 4 hours.
                    529: <p>
                    530: Available collections:
                    531: <table>
1.49      jufi      532: <tr><td width="20"></td>
1.44      brian     533:     <td><strong>OpenBSD-ports</strong></td>
                    534:     <td>- The <b>ports</b> repository</td></tr>
                    535: </table>
                    536: </dd>
                    537: </dl>
                    538:
1.52      brian     539: <dl>
1.58      naddy     540: <dt><strong>cvsup.jp.OpenBSD.org</strong></dt>
1.52      brian     541: <dd><p>
                    542: located at Otemachi, Tokyo, Japan;
1.57      brian     543: maintained by <a href="mailto:cvsupadm@openbsd.bsdlab.org">CVSup Administrator</a>.<br>
1.52      brian     544: Updated every 3 hours.
                    545: <p>
                    546: Available collections:
                    547: <table>
                    548: <tr><td width="20"></td>
                    549:     <td><strong>OpenBSD-src</strong></td>
                    550:     <td>- The <b>src</b> repository</td>
                    551: <tr><td></td>
                    552:     <td><strong>OpenBSD-ports</strong></td>
                    553:     <td>- The <b>ports</b> repository</td></tr>
                    554: <tr><td></td>
                    555:     <td><strong>OpenBSD-www</strong></td>
                    556:     <td>- The <b>www</b> repository</td></tr>
                    557: <tr><td></td>
                    558:     <td><strong>OpenBSD-x11</strong></td>
                    559:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    560: <tr><td></td>
                    561:     <td><strong>OpenBSD-xf4</strong></td>
                    562:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    563: <tr><td></td>
                    564:     <td><strong>OpenBSD-all</strong></td>
                    565:     <td>- All OpenBSD repositories</td></tr>
                    566: </table>
                    567: </dd>
                    568: </dl>
                    569:
1.54      brian     570: <dl>
1.73      kevlo     571: <dt><strong>cvsup.tw.OpenBSD.org</strong></dt>
                    572: <dd><p>
                    573: located at National Chiao-Tung University, Taiwan;
                    574: maintained by <a href="mailto:ijliao@FreeBSD.org">Ying-Chieh Liao</a>.<br>
                    575: Updated every 2 hours.
                    576: <p>
                    577: Available collections:
                    578: <table>
                    579: <tr><td width="20"></td>
                    580:     <td><strong>OpenBSD-src</strong></td>
                    581:     <td>- The <b>src</b> repository</td>
                    582: <tr><td></td>
                    583:     <td><strong>OpenBSD-ports</strong></td>
                    584:     <td>- The <b>ports</b> repository</td></tr>
                    585: <tr><td></td>
                    586:     <td><strong>OpenBSD-www</strong></td>
                    587:     <td>- The <b>www</b> repository</td></tr>
                    588: <tr><td></td>
                    589:     <td><strong>OpenBSD-x11</strong></td>
                    590:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    591: <tr><td></td>
                    592:     <td><strong>OpenBSD-xf4</strong></td>
                    593:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    594: <tr><td></td>
                    595:     <td><strong>OpenBSD-all</strong></td>
                    596:     <td>- All OpenBSD repositories</td></tr>
                    597: </table>
                    598: </dd>
                    599: </dl>
                    600:
                    601: <dl>
1.58      naddy     602: <dt><strong>wiretapped.net</strong></dt>
1.54      brian     603: <dd><p>
                    604: located in Sydney Australia;
                    605: maintained by <a href="mailto:gbayley@ausmac.net">Grant Bayley</a>.<br>
                    606: Updated every 6 hours.
                    607: <p>
                    608: Available collections:
                    609: <table>
                    610: <tr><td width="20"></td>
                    611:     <td><strong>OpenBSD-src</strong></td>
                    612:     <td>- The <b>src</b> repository</td>
                    613: <tr><td></td>
                    614:     <td><strong>OpenBSD-ports</strong></td>
                    615:     <td>- The <b>ports</b> repository</td></tr>
                    616: <tr><td></td>
                    617:     <td><strong>OpenBSD-www</strong></td>
                    618:     <td>- The <b>www</b> repository</td></tr>
                    619: <tr><td></td>
                    620:     <td><strong>OpenBSD-x11</strong></td>
                    621:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    622: <tr><td></td>
                    623:     <td><strong>OpenBSD-xf4</strong></td>
                    624:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    625: <tr><td></td>
                    626:     <td><strong>OpenBSD-all</strong></td>
                    627:     <td>- All OpenBSD repositories</td></tr>
                    628: </table>
                    629: </dd>
                    630: </dl>
                    631:
1.63      beck      632: <dl>
                    633: <dt><a href="http://mirror.osn.de/"><strong>mirror.osn.de</strong></a></dt>
                    634: <dd><p>
                    635: located in Germany
                    636: maintained by <a href="mailto:aw@osn.de">Armin Wolfermann</a>.<br>
                    637: Updated every 4 hours.
                    638: <p>
                    639: Available collections:
                    640: <table>
                    641: <tr><td width="20"></td>
                    642:     <td><strong>OpenBSD-src</strong></td>
                    643:     <td>- The <b>src</b> repository</td>
                    644: <tr><td></td>
                    645:     <td><strong>OpenBSD-ports</strong></td>
                    646:     <td>- The <b>ports</b> repository</td></tr>
                    647: <tr><td></td>
                    648:     <td><strong>OpenBSD-www</strong></td>
                    649:     <td>- The <b>www</b> repository</td></tr>
                    650: <tr><td></td>
                    651:     <td><strong>OpenBSD-x11</strong></td>
                    652:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    653: <tr><td></td>
                    654:     <td><strong>OpenBSD-xf4</strong></td>
                    655:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    656: <tr><td></td>
                    657:     <td><strong>OpenBSD-all</strong></td>
                    658:     <td>- All OpenBSD repositories</td></tr>
                    659: </table>
                    660: </dd>
                    661: </dl>
                    662:
1.65      naddy     663: <dl>
1.75      nick      664: <dt><strong>cvsup2.de.openbsd.org</strong></dt>
1.65      naddy     665: <dd><p>
1.75      nick      666: also known as <strong>openbsd.informatik.uni-erlangen.de</strong>.<br>
1.65      naddy     667: located at the University of Erlangen, Germany;
1.90      grunk     668: maintained by <a href="mailto:grunk@openbsd.org">Alexander von Gernler</a>
                    669: and <a href="mailto:stuka@pestilenz.org">Christian Kollee</a>.<br>
1.80      naddy     670: Updated every 2 hours.
1.65      naddy     671: <p>
                    672: Available collections:
                    673: <table>
                    674: <tr><td width="20"></td>
                    675:     <td><strong>OpenBSD-src</strong></td>
                    676:     <td>- The <b>src</b> repository</td></tr>
                    677: <tr><td></td>
                    678:     <td><strong>OpenBSD-ports</strong></td>
                    679:     <td>- The <b>ports</b> repository</td></tr>
                    680: <tr><td></td>
                    681:     <td><strong>OpenBSD-www</strong></td>
                    682:     <td>- The <b>www</b> repository</td></tr>
                    683: <tr><td></td>
                    684:     <td><strong>OpenBSD-x11</strong></td>
                    685:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    686: <tr><td></td>
                    687:     <td><strong>OpenBSD-xf4</strong></td>
                    688:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    689: <tr><td></td>
                    690:     <td><strong>OpenBSD-all</strong></td>
                    691:     <td>- All OpenBSD repositories</td></tr>
                    692: </table>
                    693: </dd>
                    694: </dl>
                    695:
1.78      pvalchev  696: <dl>
                    697: <dt><strong>cvsup.bg.openbsd.org</strong></dt>
                    698: <dd><p>
                    699: located in Plovdiv, Bulgaria,
                    700: maintained by <a href="mailto:veno@evrocom.net">Ventsislav Velkov</a>.<br>
                    701: Updated every 2 hours.
                    702: <p>
                    703: Available collections:
                    704: <table>
                    705: <tr><td width="20"></td>
                    706:     <td><strong>OpenBSD-src</strong></td>
                    707:     <td>- The <b>src</b> repository</td></tr>
                    708: <tr><td></td>
                    709:     <td><strong>OpenBSD-ports</strong></td>
                    710:     <td>- The <b>ports</b> repository</td></tr>
                    711: <tr><td></td>
                    712:     <td><strong>OpenBSD-www</strong></td>
                    713:     <td>- The <b>www</b> repository</td></tr>
                    714: <tr><td></td>
                    715:     <td><strong>OpenBSD-x11</strong></td>
                    716:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    717: <tr><td></td>
                    718:     <td><strong>OpenBSD-xf4</strong></td>
                    719:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    720: <tr><td></td>
                    721:     <td><strong>OpenBSD-all</strong></td>
                    722:     <td>- All OpenBSD repositories</td></tr>
                    723: </table>
                    724: </dd>
                    725: </dl>
                    726:
1.84      nick      727: <dl>
                    728: <dt><strong><a href="http://cvsup.open.bsd.lv">cvsup.open.bsd.lv</a></strong></dt>
                    729: <dd><p>
                    730: located in Riga, Latvia;
                    731: maintained by <a href="mailto:petruha@bsd.lv">Peter Dunaskin</a>.<br>
                    732: Updated every 2 hours.
                    733: <p>
                    734: Available collections:
                    735: <table>
                    736: <tr><td width="20"></td>
                    737:     <td><strong>OpenBSD-src</strong></td>
                    738:     <td>- The <b>src</b> repository</td></tr>
                    739: <tr><td></td>
                    740:     <td><strong>OpenBSD-ports</strong></td>
                    741:     <td>- The <b>ports</b> repository</td></tr>
                    742: <tr><td></td>
                    743:     <td><strong>OpenBSD-www</strong></td>
                    744:     <td>- The <b>www</b> repository</td></tr>
                    745: <tr><td></td>
                    746:     <td><strong>OpenBSD-x11</strong></td>
                    747:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    748: <tr><td></td>
                    749:     <td><strong>OpenBSD-xf4</strong></td>
                    750:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    751: <tr><td></td>
                    752:     <td><strong>OpenBSD-all</strong></td>
                    753:     <td>- All OpenBSD repositories</td></tr>
                    754: </table>
                    755: </dd>
                    756: </dl>
                    757:
1.91      grunk     758: <dl>
                    759: <dt><strong>rudy.mif.pg.gda.pl</strong></dt>
                    760: <dd><p>
                    761: located at the Gdansk University of Technology, Poland;
1.92      grunk     762: maintained by <a href="mailto:szati@rudy.mif.pg.gda.pl">Lukasz Sztachanski</a>.
1.91      grunk     763: <br>
                    764: Updated every 2 hours.
                    765: <p>
                    766: Available collections:
                    767: <table>
                    768: <tr><td width="20"></td>
                    769:     <td><strong>OpenBSD-src</strong></td>
                    770:     <td>- The <b>src</b> repository</td></tr>
                    771: <tr><td></td>
                    772:     <td><strong>OpenBSD-ports</strong></td>
                    773:     <td>- The <b>ports</b> repository</td></tr>
                    774: <tr><td></td>
                    775:     <td><strong>OpenBSD-www</strong></td>
                    776:     <td>- The <b>www</b> repository</td></tr>
                    777: <tr><td></td>
                    778:     <td><strong>OpenBSD-x11</strong></td>
                    779:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    780: <tr><td></td>
                    781:     <td><strong>OpenBSD-xf4</strong></td>
                    782:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    783: <tr><td></td>
                    784:     <td><strong>OpenBSD-all</strong></td>
                    785:     <td>- All OpenBSD repositories</td></tr>
                    786: </table>
                    787: </dd>
                    788: </dl>
                    789:
1.95      grunk     790: <dl>
                    791: <dt><strong>mirror.public-internet.co.uk</strong></dt>
                    792: <dd><p>
                    793: located at London, UK;
                    794: maintained by <a href="mailto:tom.beard@public-internet.co.uk">Tom Beard</a>.
                    795: <br>
                    796: Updated every 2 hours from cvsup2.de.openbsd.org.
                    797: <p>
                    798: Available collections:
                    799: <table>
                    800: <tr><td width="20"></td>
                    801:     <td><strong>OpenBSD-src</strong></td>
                    802:     <td>- The <b>src</b> repository</td></tr>
                    803: <tr><td></td>
                    804:     <td><strong>OpenBSD-ports</strong></td>
                    805:     <td>- The <b>ports</b> repository</td></tr>
                    806: <tr><td></td>
                    807:     <td><strong>OpenBSD-www</strong></td>
                    808:     <td>- The <b>www</b> repository</td></tr>
                    809: <tr><td></td>
                    810:     <td><strong>OpenBSD-x11</strong></td>
                    811:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    812: <tr><td></td>
                    813:     <td><strong>OpenBSD-xf4</strong></td>
                    814:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    815: <tr><td></td>
                    816:     <td><strong>OpenBSD-all</strong></td>
                    817:     <td>- All OpenBSD repositories</td></tr>
                    818: </table>
                    819: </dd>
                    820: </dl>
                    821:
1.96      grunk     822: <dl>
                    823: <dt><strong>anoncvs.openbsd.org.ua</strong></dt>
                    824: <dd><p>
                    825: located in Kiev, Ukraine;
                    826: maintained by <a href="mailto:hunter@mirotel.net">Sergey Smitienko</a>.
                    827: <br>
                    828: Updated every 6 hours.
                    829: <p>
                    830: Available collections:
                    831: <table>
                    832: <tr><td width="20"></td>
                    833:     <td><strong>OpenBSD-src</strong></td>
                    834:     <td>- The <b>src</b> repository</td></tr>
                    835: <tr><td></td>
                    836:     <td><strong>OpenBSD-ports</strong></td>
                    837:     <td>- The <b>ports</b> repository</td></tr>
                    838: <tr><td></td>
                    839:     <td><strong>OpenBSD-www</strong></td>
                    840:     <td>- The <b>www</b> repository</td></tr>
                    841: <tr><td></td>
                    842:     <td><strong>OpenBSD-x11</strong></td>
                    843:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    844: <tr><td></td>
                    845:     <td><strong>OpenBSD-xf4</strong></td>
                    846:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    847: <tr><td></td>
                    848:     <td><strong>OpenBSD-all</strong></td>
                    849:     <td>- All OpenBSD repositories</td></tr>
                    850: </table>
                    851: </dd>
                    852: </dl>
                    853:
1.97      grunk     854: <dl>
                    855: <dt><strong>cvsup.openbsd.nu</strong></dt>
                    856: <dd><p>
                    857: located in Stockholm, Sweden;
                    858: maintained by <a href="mailto:kent@openbsd.nu">Kent Riboe</a>.
                    859: <br>
                    860: Updated every 3 hours from cvsync.de.openbsd.org.
                    861: <p>
                    862: Available collections:
                    863: <table>
                    864: <tr><td width="20"></td>
                    865:     <td><strong>OpenBSD-src</strong></td>
                    866:     <td>- The <b>src</b> repository</td></tr>
                    867: <tr><td></td>
                    868:     <td><strong>OpenBSD-ports</strong></td>
                    869:     <td>- The <b>ports</b> repository</td></tr>
                    870: <tr><td></td>
                    871:     <td><strong>OpenBSD-www</strong></td>
                    872:     <td>- The <b>www</b> repository</td></tr>
                    873: <tr><td></td>
                    874:     <td><strong>OpenBSD-x11</strong></td>
                    875:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    876: <tr><td></td>
                    877:     <td><strong>OpenBSD-xf4</strong></td>
                    878:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    879: <tr><td></td>
                    880:     <td><strong>OpenBSD-all</strong></td>
                    881:     <td>- All OpenBSD repositories</td></tr>
                    882: </table>
                    883: </dd>
                    884: </dl>
                    885:
1.1       brian     886: <p>
1.87      joel      887: <em>Note:</em> If your server is listed on here with inaccurate or
                    888: unknown information, please contact
                    889: <a href="mailto:www@openbsd.org"><tt>www@openbsd.org</tt></a>.
1.1       brian     890: <p>
1.58      naddy     891: 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   892: to find out which server is nearest you.
1.1       brian     893: Problems with a server should be reported to the <b>maintainer</b> of the
                    894: server in question.
                    895: <p>
1.96      grunk     896: As of December 12, 2005, the CVS repository sizes are
1.4       brian     897: <table>
1.9       naddy     898: <tr><td width="20"></td>
1.20      brian     899:     <td><strong>OpenBSD-ports</strong></td>
1.96      grunk     900:     <td>- <b>204</b>MB</td></tr>
1.9       naddy     901: <tr><td></td>
1.20      brian     902:     <td><strong>OpenBSD-src</strong></td>
1.96      grunk     903:     <td>- <b>1369</b>MB</td></tr>
1.9       naddy     904: <tr><td></td>
1.20      brian     905:     <td><strong>OpenBSD-www</strong></td>
1.96      grunk     906:     <td>- <b>236</b>MB</td></tr>
1.9       naddy     907: <tr><td></td>
1.20      brian     908:     <td><strong>OpenBSD-x11</strong></td>
1.68      naddy     909:     <td>- <b>200</b>MB</td></tr>
1.20      brian     910: <tr><td></td>
                    911:     <td><strong>OpenBSD-xf4</strong></td>
1.96      grunk     912:     <td>- <b>531</b>MB</td></tr>
1.4       brian     913: </table>
                    914: <p>
1.96      grunk     915: There is an additional overhead of <b>301</b>MB for the CVSROOT
1.68      naddy     916: directory.  The overall repository size currently increases at a rate
1.85      nick      917: of about <b>400</b>MB per annum.
1.4       brian     918: <p>
1.1       brian     919: <strong>IMPORTANT NOTE:</strong>
                    920: There are a few issues relating to cryptographic software that everyone
                    921: should be aware of:
                    922: <ul>
1.9       naddy     923:   <li>
                    924:     <p>
                    925:     The OpenBSD sources are from Canada. As
1.67      nick      926:     <a href="http://www.efc.ca/pages/doc/crypto-export.html">
1.9       naddy     927:     researched by a Canadian individual</a> and as
                    928:     <a href="http://axion.physics.ubc.ca/ECL.html">
                    929:     described in the Export Control list of Canada</a>,
                    930:     it is legal to export crypto software from Canada to the world.
                    931:   </li>
                    932:   <li>
                    933:     <p>
                    934:     However, if you are outside the USA or Canada, you should not
1.72      naddy     935:     fetch the cryptographic sections of the OpenBSD sources from a
                    936:     CVSup server located in the USA. The files in question are...
1.9       naddy     937:     <ul>
                    938:       <li><tt>src/kerberosIV/*</tt></li>
1.56      miod      939:       <li><tt>src/kerberosV/*</tt></li>
1.9       naddy     940:       <li><tt>src/lib/libdes/*</tt></li>
                    941:       <li><tt>src/lib/libc/crypt/crypt.c</tt></li>
                    942:       <li><tt>src/lib/libc/crypt/morecrypt.c</tt></li>
1.56      miod      943:       <li><tt>src/sys/crypto</tt></li>
1.9       naddy     944:       <li><tt>src/sys/netinet</tt></li>
                    945:       <li><tt>src/usr.sbin/afs/src/rxkad/*</tt></li>
1.56      miod      946:       <li><tt>XF4/xc-mit/lib/Xdmcp/Wraphelp.c</tt></li>
                    947:       <li><tt>XF4/xc-old/lib/Xdmcp/Wraphelp.c</tt></li>
                    948:       <li><tt>XF4/xc/lib/Xdmcp/Wraphelp.c</tt></li>
1.9       naddy     949:     </ul>
                    950:     <p>
                    951:     Because of the USA ITAR munitions list,
                    952:     crypto software may only be exported to Canada from the USA.
                    953:   </li>
1.1       brian     954: </ul>
                    955:
                    956: <p>
                    957: The OpenBSD project is looking for more CVSup servers -- if you are
1.87      joel      958: interested, please contact
                    959: <a href="mailto:www@openbsd.org"><tt>www@openbsd.org</tt></a>
1.1       brian     960: for configuration details.
                    961:
1.21      naddy     962: <hr>
                    963: <a href="index.html"><img height="24" width="24" src="back.gif" border="0" alt="OpenBSD"></a>
1.7       brian     964: <a href="mailto:www@openbsd.org">www@openbsd.org</a>
1.98    ! ray       965: <br><small>$OpenBSD: cvsup.html,v 1.97 2005/12/13 17:36:47 grunk Exp $</small>
1.1       brian     966:
                    967: </body>
                    968: </html>