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

Annotation of www/cvsup.html, Revision 1.104

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.100     steven     12: <meta name="copyright" content="This document copyright 2000-2006 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>
1.102     steven    316:     <td>- The <b>src</b> repository</td></tr>
1.14      brian     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>
1.102     steven    347:     <td>- The <b>src</b> repository</td></tr>
1.76      millert   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>
1.102     steven    378:     <td>- The <b>src</b> repository</td></tr>
1.76      millert   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>
1.102     steven    409:     <td>- The <b>src</b> repository</td></tr>
1.27      brian     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>
1.102     steven    440:     <td>- The <b>src</b> repository</td></tr>
1.30      brian     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>
                    461: <dt><a href="http://rt.fm/cvsup.html"><strong>rt.fm</strong></a></dt>
                    462: <dd><p>
1.38      brian     463: located at Lake in the Hills, Illinois, USA;
1.37      brian     464: maintained by <a href="mailto:jcs@rt.fm">Joshua Stein</a>.<br>
1.38      brian     465: Updated every 2 hours.
1.37      brian     466: <p>
                    467: Available collections:
                    468: <table>
                    469: <tr><td width="20"></td>
                    470:     <td><strong>OpenBSD-src</strong></td>
1.102     steven    471:     <td>- The <b>src</b> repository</td></tr>
1.37      brian     472: <tr><td></td>
                    473:     <td><strong>OpenBSD-ports</strong></td>
                    474:     <td>- The <b>ports</b> repository</td></tr>
                    475: <tr><td></td>
                    476:     <td><strong>OpenBSD-www</strong></td>
                    477:     <td>- The <b>www</b> repository</td></tr>
                    478: <tr><td></td>
                    479:     <td><strong>OpenBSD-x11</strong></td>
                    480:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    481: <tr><td></td>
                    482:     <td><strong>OpenBSD-xf4</strong></td>
                    483:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    484: <tr><td></td>
                    485:     <td><strong>OpenBSD-all</strong></td>
                    486:     <td>- All OpenBSD repositories</td></tr>
                    487: </table>
                    488: </dd>
                    489: </dl>
1.30      brian     490:
1.47      brian     491: <dl>
1.44      brian     492: <dt><strong>skeleton.phys.spbu.ru</strong></dt>
                    493: <dd><p>
1.46      brian     494: located in St. Petersburg State University, St. Petersburg, Russia;
1.44      brian     495: maintained by <a href="mailto:kab00m@lich.phys.spbu.ru">Dima Veselov</a>.<br>
                    496: Updated every 4 hours.
                    497: <p>
                    498: Available collections:
                    499: <table>
1.49      jufi      500: <tr><td width="20"></td>
1.44      brian     501:     <td><strong>OpenBSD-ports</strong></td>
                    502:     <td>- The <b>ports</b> repository</td></tr>
                    503: </table>
                    504: </dd>
                    505: </dl>
                    506:
1.52      brian     507: <dl>
1.58      naddy     508: <dt><strong>cvsup.jp.OpenBSD.org</strong></dt>
1.52      brian     509: <dd><p>
                    510: located at Otemachi, Tokyo, Japan;
1.57      brian     511: maintained by <a href="mailto:cvsupadm@openbsd.bsdlab.org">CVSup Administrator</a>.<br>
1.52      brian     512: Updated every 3 hours.
                    513: <p>
                    514: Available collections:
                    515: <table>
                    516: <tr><td width="20"></td>
                    517:     <td><strong>OpenBSD-src</strong></td>
1.102     steven    518:     <td>- The <b>src</b> repository</td></tr>
1.52      brian     519: <tr><td></td>
                    520:     <td><strong>OpenBSD-ports</strong></td>
                    521:     <td>- The <b>ports</b> repository</td></tr>
                    522: <tr><td></td>
                    523:     <td><strong>OpenBSD-www</strong></td>
                    524:     <td>- The <b>www</b> repository</td></tr>
                    525: <tr><td></td>
                    526:     <td><strong>OpenBSD-x11</strong></td>
                    527:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    528: <tr><td></td>
                    529:     <td><strong>OpenBSD-xf4</strong></td>
                    530:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    531: <tr><td></td>
                    532:     <td><strong>OpenBSD-all</strong></td>
                    533:     <td>- All OpenBSD repositories</td></tr>
                    534: </table>
                    535: </dd>
                    536: </dl>
                    537:
1.54      brian     538: <dl>
1.73      kevlo     539: <dt><strong>cvsup.tw.OpenBSD.org</strong></dt>
                    540: <dd><p>
                    541: located at National Chiao-Tung University, Taiwan;
                    542: maintained by <a href="mailto:ijliao@FreeBSD.org">Ying-Chieh Liao</a>.<br>
                    543: Updated every 2 hours.
                    544: <p>
                    545: Available collections:
                    546: <table>
                    547: <tr><td width="20"></td>
                    548:     <td><strong>OpenBSD-src</strong></td>
1.102     steven    549:     <td>- The <b>src</b> repository</td></tr>
1.73      kevlo     550: <tr><td></td>
                    551:     <td><strong>OpenBSD-ports</strong></td>
                    552:     <td>- The <b>ports</b> repository</td></tr>
                    553: <tr><td></td>
                    554:     <td><strong>OpenBSD-www</strong></td>
                    555:     <td>- The <b>www</b> repository</td></tr>
                    556: <tr><td></td>
                    557:     <td><strong>OpenBSD-x11</strong></td>
                    558:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    559: <tr><td></td>
                    560:     <td><strong>OpenBSD-xf4</strong></td>
                    561:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    562: <tr><td></td>
                    563:     <td><strong>OpenBSD-all</strong></td>
                    564:     <td>- All OpenBSD repositories</td></tr>
                    565: </table>
                    566: </dd>
                    567: </dl>
                    568:
                    569: <dl>
1.58      naddy     570: <dt><strong>wiretapped.net</strong></dt>
1.54      brian     571: <dd><p>
                    572: located in Sydney Australia;
                    573: maintained by <a href="mailto:gbayley@ausmac.net">Grant Bayley</a>.<br>
                    574: Updated every 6 hours.
                    575: <p>
                    576: Available collections:
                    577: <table>
                    578: <tr><td width="20"></td>
                    579:     <td><strong>OpenBSD-src</strong></td>
1.102     steven    580:     <td>- The <b>src</b> repository</td></tr>
1.54      brian     581: <tr><td></td>
                    582:     <td><strong>OpenBSD-ports</strong></td>
                    583:     <td>- The <b>ports</b> repository</td></tr>
                    584: <tr><td></td>
                    585:     <td><strong>OpenBSD-www</strong></td>
                    586:     <td>- The <b>www</b> repository</td></tr>
                    587: <tr><td></td>
                    588:     <td><strong>OpenBSD-x11</strong></td>
                    589:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    590: <tr><td></td>
                    591:     <td><strong>OpenBSD-xf4</strong></td>
                    592:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    593: <tr><td></td>
                    594:     <td><strong>OpenBSD-all</strong></td>
                    595:     <td>- All OpenBSD repositories</td></tr>
                    596: </table>
                    597: </dd>
                    598: </dl>
                    599:
1.63      beck      600: <dl>
                    601: <dt><a href="http://mirror.osn.de/"><strong>mirror.osn.de</strong></a></dt>
                    602: <dd><p>
                    603: located in Germany
                    604: maintained by <a href="mailto:aw@osn.de">Armin Wolfermann</a>.<br>
                    605: Updated every 4 hours.
                    606: <p>
                    607: Available collections:
                    608: <table>
                    609: <tr><td width="20"></td>
                    610:     <td><strong>OpenBSD-src</strong></td>
1.102     steven    611:     <td>- The <b>src</b> repository</td></tr>
1.63      beck      612: <tr><td></td>
                    613:     <td><strong>OpenBSD-ports</strong></td>
                    614:     <td>- The <b>ports</b> repository</td></tr>
                    615: <tr><td></td>
                    616:     <td><strong>OpenBSD-www</strong></td>
                    617:     <td>- The <b>www</b> repository</td></tr>
                    618: <tr><td></td>
                    619:     <td><strong>OpenBSD-x11</strong></td>
                    620:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    621: <tr><td></td>
                    622:     <td><strong>OpenBSD-xf4</strong></td>
                    623:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    624: <tr><td></td>
                    625:     <td><strong>OpenBSD-all</strong></td>
                    626:     <td>- All OpenBSD repositories</td></tr>
                    627: </table>
                    628: </dd>
                    629: </dl>
                    630:
1.65      naddy     631: <dl>
1.75      nick      632: <dt><strong>cvsup2.de.openbsd.org</strong></dt>
1.65      naddy     633: <dd><p>
1.75      nick      634: also known as <strong>openbsd.informatik.uni-erlangen.de</strong>.<br>
1.65      naddy     635: located at the University of Erlangen, Germany;
1.90      grunk     636: maintained by <a href="mailto:grunk@openbsd.org">Alexander von Gernler</a>
                    637: and <a href="mailto:stuka@pestilenz.org">Christian Kollee</a>.<br>
1.80      naddy     638: Updated every 2 hours.
1.65      naddy     639: <p>
                    640: Available collections:
                    641: <table>
                    642: <tr><td width="20"></td>
                    643:     <td><strong>OpenBSD-src</strong></td>
                    644:     <td>- The <b>src</b> repository</td></tr>
                    645: <tr><td></td>
                    646:     <td><strong>OpenBSD-ports</strong></td>
                    647:     <td>- The <b>ports</b> repository</td></tr>
                    648: <tr><td></td>
                    649:     <td><strong>OpenBSD-www</strong></td>
                    650:     <td>- The <b>www</b> repository</td></tr>
                    651: <tr><td></td>
                    652:     <td><strong>OpenBSD-x11</strong></td>
                    653:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    654: <tr><td></td>
                    655:     <td><strong>OpenBSD-xf4</strong></td>
                    656:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    657: <tr><td></td>
                    658:     <td><strong>OpenBSD-all</strong></td>
                    659:     <td>- All OpenBSD repositories</td></tr>
                    660: </table>
                    661: </dd>
                    662: </dl>
                    663:
1.78      pvalchev  664: <dl>
                    665: <dt><strong>cvsup.bg.openbsd.org</strong></dt>
                    666: <dd><p>
                    667: located in Plovdiv, Bulgaria,
                    668: maintained by <a href="mailto:veno@evrocom.net">Ventsislav Velkov</a>.<br>
                    669: Updated every 2 hours.
                    670: <p>
                    671: Available collections:
                    672: <table>
                    673: <tr><td width="20"></td>
                    674:     <td><strong>OpenBSD-src</strong></td>
                    675:     <td>- The <b>src</b> repository</td></tr>
                    676: <tr><td></td>
                    677:     <td><strong>OpenBSD-ports</strong></td>
                    678:     <td>- The <b>ports</b> repository</td></tr>
                    679: <tr><td></td>
                    680:     <td><strong>OpenBSD-www</strong></td>
                    681:     <td>- The <b>www</b> repository</td></tr>
                    682: <tr><td></td>
                    683:     <td><strong>OpenBSD-x11</strong></td>
                    684:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    685: <tr><td></td>
                    686:     <td><strong>OpenBSD-xf4</strong></td>
                    687:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    688: <tr><td></td>
                    689:     <td><strong>OpenBSD-all</strong></td>
                    690:     <td>- All OpenBSD repositories</td></tr>
                    691: </table>
                    692: </dd>
                    693: </dl>
                    694:
1.84      nick      695: <dl>
                    696: <dt><strong><a href="http://cvsup.open.bsd.lv">cvsup.open.bsd.lv</a></strong></dt>
                    697: <dd><p>
                    698: located in Riga, Latvia;
                    699: maintained by <a href="mailto:petruha@bsd.lv">Peter Dunaskin</a>.<br>
                    700: Updated every 2 hours.
                    701: <p>
                    702: Available collections:
                    703: <table>
                    704: <tr><td width="20"></td>
                    705:     <td><strong>OpenBSD-src</strong></td>
                    706:     <td>- The <b>src</b> repository</td></tr>
                    707: <tr><td></td>
                    708:     <td><strong>OpenBSD-ports</strong></td>
                    709:     <td>- The <b>ports</b> repository</td></tr>
                    710: <tr><td></td>
                    711:     <td><strong>OpenBSD-www</strong></td>
                    712:     <td>- The <b>www</b> repository</td></tr>
                    713: <tr><td></td>
                    714:     <td><strong>OpenBSD-x11</strong></td>
                    715:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    716: <tr><td></td>
                    717:     <td><strong>OpenBSD-xf4</strong></td>
                    718:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    719: <tr><td></td>
                    720:     <td><strong>OpenBSD-all</strong></td>
                    721:     <td>- All OpenBSD repositories</td></tr>
                    722: </table>
                    723: </dd>
                    724: </dl>
                    725:
1.91      grunk     726: <dl>
                    727: <dt><strong>rudy.mif.pg.gda.pl</strong></dt>
                    728: <dd><p>
                    729: located at the Gdansk University of Technology, Poland;
1.92      grunk     730: maintained by <a href="mailto:szati@rudy.mif.pg.gda.pl">Lukasz Sztachanski</a>.
1.91      grunk     731: <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.95      grunk     758: <dl>
                    759: <dt><strong>mirror.public-internet.co.uk</strong></dt>
                    760: <dd><p>
                    761: located at London, UK;
                    762: maintained by <a href="mailto:tom.beard@public-internet.co.uk">Tom Beard</a>.
                    763: <br>
                    764: Updated every 2 hours from cvsup2.de.openbsd.org.
                    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.99      steven    790: <!--
1.96      grunk     791: <dl>
                    792: <dt><strong>anoncvs.openbsd.org.ua</strong></dt>
                    793: <dd><p>
                    794: located in Kiev, Ukraine;
                    795: maintained by <a href="mailto:hunter@mirotel.net">Sergey Smitienko</a>.
                    796: <br>
                    797: Updated every 6 hours.
                    798: <p>
                    799: Available collections:
                    800: <table>
                    801: <tr><td width="20"></td>
                    802:     <td><strong>OpenBSD-src</strong></td>
                    803:     <td>- The <b>src</b> repository</td></tr>
                    804: <tr><td></td>
                    805:     <td><strong>OpenBSD-ports</strong></td>
                    806:     <td>- The <b>ports</b> repository</td></tr>
                    807: <tr><td></td>
                    808:     <td><strong>OpenBSD-www</strong></td>
                    809:     <td>- The <b>www</b> repository</td></tr>
                    810: <tr><td></td>
                    811:     <td><strong>OpenBSD-x11</strong></td>
                    812:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    813: <tr><td></td>
                    814:     <td><strong>OpenBSD-xf4</strong></td>
                    815:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    816: <tr><td></td>
                    817:     <td><strong>OpenBSD-all</strong></td>
                    818:     <td>- All OpenBSD repositories</td></tr>
                    819: </table>
                    820: </dd>
                    821: </dl>
1.99      steven    822: -->
1.96      grunk     823:
1.97      grunk     824: <dl>
                    825: <dt><strong>cvsup.openbsd.nu</strong></dt>
                    826: <dd><p>
                    827: located in Stockholm, Sweden;
                    828: maintained by <a href="mailto:kent@openbsd.nu">Kent Riboe</a>.
                    829: <br>
                    830: Updated every 3 hours from cvsync.de.openbsd.org.
                    831: <p>
                    832: Available collections:
                    833: <table>
                    834: <tr><td width="20"></td>
                    835:     <td><strong>OpenBSD-src</strong></td>
                    836:     <td>- The <b>src</b> repository</td></tr>
                    837: <tr><td></td>
                    838:     <td><strong>OpenBSD-ports</strong></td>
                    839:     <td>- The <b>ports</b> repository</td></tr>
                    840: <tr><td></td>
                    841:     <td><strong>OpenBSD-www</strong></td>
                    842:     <td>- The <b>www</b> repository</td></tr>
                    843: <tr><td></td>
                    844:     <td><strong>OpenBSD-x11</strong></td>
                    845:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    846: <tr><td></td>
                    847:     <td><strong>OpenBSD-xf4</strong></td>
                    848:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    849: <tr><td></td>
                    850:     <td><strong>OpenBSD-all</strong></td>
                    851:     <td>- All OpenBSD repositories</td></tr>
                    852: </table>
                    853: </dd>
                    854: </dl>
                    855:
1.1       brian     856: <p>
1.87      joel      857: <em>Note:</em> If your server is listed on here with inaccurate or
                    858: unknown information, please contact
                    859: <a href="mailto:www@openbsd.org"><tt>www@openbsd.org</tt></a>.
1.1       brian     860: <p>
1.58      naddy     861: 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   862: to find out which server is nearest you.
1.1       brian     863: Problems with a server should be reported to the <b>maintainer</b> of the
                    864: server in question.
                    865: <p>
1.100     steven    866: As of August 21, 2006, the CVS repository sizes are
1.4       brian     867: <table>
1.9       naddy     868: <tr><td width="20"></td>
1.20      brian     869:     <td><strong>OpenBSD-ports</strong></td>
1.100     steven    870:     <td>- <b>222</b>MB</td></tr>
1.9       naddy     871: <tr><td></td>
1.20      brian     872:     <td><strong>OpenBSD-src</strong></td>
1.100     steven    873:     <td>- <b>1396</b>MB</td></tr>
1.9       naddy     874: <tr><td></td>
1.20      brian     875:     <td><strong>OpenBSD-www</strong></td>
1.100     steven    876:     <td>- <b>247</b>MB</td></tr>
1.9       naddy     877: <tr><td></td>
1.20      brian     878:     <td><strong>OpenBSD-x11</strong></td>
1.68      naddy     879:     <td>- <b>200</b>MB</td></tr>
1.20      brian     880: <tr><td></td>
                    881:     <td><strong>OpenBSD-xf4</strong></td>
1.100     steven    882:     <td>- <b>562</b>MB</td></tr>
1.4       brian     883: </table>
                    884: <p>
1.100     steven    885: There is an additional overhead of <b>408</b>MB for the CVSROOT
1.68      naddy     886: directory.  The overall repository size currently increases at a rate
1.85      nick      887: of about <b>400</b>MB per annum.
1.4       brian     888: <p>
1.1       brian     889: <strong>IMPORTANT NOTE:</strong>
                    890: There are a few issues relating to cryptographic software that everyone
                    891: should be aware of:
                    892: <ul>
1.9       naddy     893:   <li>
                    894:     <p>
                    895:     The OpenBSD sources are from Canada. As
1.67      nick      896:     <a href="http://www.efc.ca/pages/doc/crypto-export.html">
1.9       naddy     897:     researched by a Canadian individual</a> and as
                    898:     <a href="http://axion.physics.ubc.ca/ECL.html">
                    899:     described in the Export Control list of Canada</a>,
                    900:     it is legal to export crypto software from Canada to the world.
                    901:   </li>
                    902:   <li>
                    903:     <p>
                    904:     However, if you are outside the USA or Canada, you should not
1.72      naddy     905:     fetch the cryptographic sections of the OpenBSD sources from a
                    906:     CVSup server located in the USA. The files in question are...
1.9       naddy     907:     <ul>
                    908:       <li><tt>src/kerberosIV/*</tt></li>
1.56      miod      909:       <li><tt>src/kerberosV/*</tt></li>
1.9       naddy     910:       <li><tt>src/lib/libdes/*</tt></li>
                    911:       <li><tt>src/lib/libc/crypt/crypt.c</tt></li>
                    912:       <li><tt>src/lib/libc/crypt/morecrypt.c</tt></li>
1.56      miod      913:       <li><tt>src/sys/crypto</tt></li>
1.9       naddy     914:       <li><tt>src/sys/netinet</tt></li>
                    915:       <li><tt>src/usr.sbin/afs/src/rxkad/*</tt></li>
1.56      miod      916:       <li><tt>XF4/xc-mit/lib/Xdmcp/Wraphelp.c</tt></li>
                    917:       <li><tt>XF4/xc-old/lib/Xdmcp/Wraphelp.c</tt></li>
                    918:       <li><tt>XF4/xc/lib/Xdmcp/Wraphelp.c</tt></li>
1.9       naddy     919:     </ul>
                    920:     <p>
                    921:     Because of the USA ITAR munitions list,
                    922:     crypto software may only be exported to Canada from the USA.
                    923:   </li>
1.1       brian     924: </ul>
                    925:
                    926: <p>
                    927: The OpenBSD project is looking for more CVSup servers -- if you are
1.87      joel      928: interested, please contact
                    929: <a href="mailto:www@openbsd.org"><tt>www@openbsd.org</tt></a>
1.1       brian     930: for configuration details.
                    931:
1.21      naddy     932: <hr>
                    933: <a href="index.html"><img height="24" width="24" src="back.gif" border="0" alt="OpenBSD"></a>
1.7       brian     934: <a href="mailto:www@openbsd.org">www@openbsd.org</a>
1.104   ! naddy     935: <br><small>$OpenBSD: cvsup.html,v 1.103 2006/09/09 08:11:13 grunk Exp $</small>
1.1       brian     936:
                    937: </body>
                    938: </html>