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

Annotation of www/cvsup.html, Revision 1.105

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.41      brad      247: <dt><strong>cvsup.hu.openbsd.org</strong></dt>
1.18      beck      248: <dd><p>
1.41      brad      249: located in Hungary;
                    250: maintained by <a href="mailto:mohacsi@hera.ik.bme.hu">Mohacsi Janos</a>.<br>
                    251: Updated every 4 hours.
1.18      beck      252: <p>
                    253: Available collections:
                    254: <table>
                    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>
1.19      brian     265:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     266:     <td>- The <b>XFree86-3</b> repository</td></tr>
1.19      brian     267: <tr><td></td>
1.18      beck      268:     <td><strong>OpenBSD-all</strong></td>
                    269:     <td>- All OpenBSD repositories</td></tr>
                    270: </table>
                    271: </dd>
                    272: </dl>
                    273:
                    274: <dl>
1.41      brad      275: <dt><strong>cvsup.usa.openbsd.org</strong></dt>
1.14      brian     276: <dd><p>
1.41      brad      277: located in West Lafayette, Indiana, USA;
1.21      naddy     278: maintained by <a href="mailto:will@csociety.ecn.purdue.edu">Will Andrews</a>.<br>
1.14      brian     279: Updated every 2 hours.
                    280: <p>
                    281: Available collections:
                    282: <table>
                    283: <tr><td width="20"></td>
                    284:     <td><strong>OpenBSD-src</strong></td>
1.102     steven    285:     <td>- The <b>src</b> repository</td></tr>
1.14      brian     286: <tr><td></td>
                    287:     <td><strong>OpenBSD-ports</strong></td>
                    288:     <td>- The <b>ports</b> repository</td></tr>
                    289: <tr><td></td>
                    290:     <td><strong>OpenBSD-www</strong></td>
                    291:     <td>- The <b>www</b> repository</td></tr>
                    292: <tr><td></td>
                    293:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     294:     <td>- The <b>XFree86-3</b> repository</td></tr>
1.14      brian     295: <tr><td></td>
1.23      naddy     296:     <td><strong>OpenBSD-xf4</strong></td>
                    297:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    298: <tr><td></td>
1.14      brian     299:     <td><strong>OpenBSD-all</strong></td>
                    300:     <td>- All OpenBSD repositories</td></tr>
                    301: </table>
                    302: </dd>
                    303: </dl>
                    304:
1.26      brian     305: <dl>
1.76      millert   306: <dt><strong>anoncvs1.usa.openbsd.org</strong></dt>
                    307: <dd><p>
                    308: located in Redwood City, California, western USA;
                    309: maintained by <a href="mailto:millert@openbsd.org">Todd Miller</a>.<br>
                    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.76      millert   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>
                    325:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    326: <tr><td></td>
                    327:     <td><strong>OpenBSD-xf4</strong></td>
                    328:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    329: <tr><td></td>
                    330:     <td><strong>OpenBSD-all</strong></td>
                    331:     <td>- All OpenBSD repositories</td></tr>
                    332: </table>
                    333: </dd>
                    334: </dl>
                    335:
                    336: <dl>
1.77      millert   337: <dt><strong>anoncvs3.usa.openbsd.org</strong></dt>
1.76      millert   338: <dd><p>
                    339: located at the University of Colorado, Boulder, 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:
1.27      brian     367: <dl>
1.41      brad      368: <dt><a href="http://cvsup.no.openbsd.org/"><strong>cvsup.no.openbsd.org</strong></a></dt>
1.27      brian     369: <dd><p>
1.43      heko      370: located in Oslo, Norway;
1.27      brian     371: maintained by <a href="mailto:anders@fix.no">Anders Nordby</a>.<br>
1.29      brian     372: Updated every 3 hours.
1.27      brian     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.27      brian     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.30      brian     398: <dl>
1.41      brad      399: <dt><a href="http://cvsup.pt.openbsd.org/"><strong>cvsup.pt.openbsd.org</strong></a></dt>
1.30      brian     400: <dd><p>
                    401: located at the University of Coimbra, Portugal;
1.36      brian     402: maintained by <a href="mailto:jpedras@webvolution.net">Jo&atilde;o Pedras</a>.<br>
1.30      brian     403: Updated every 3 hours.
                    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.30      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>
1.47      brian     428:
1.37      brian     429: <dl>
                    430: <dt><a href="http://rt.fm/cvsup.html"><strong>rt.fm</strong></a></dt>
                    431: <dd><p>
1.38      brian     432: located at Lake in the Hills, Illinois, USA;
1.37      brian     433: maintained by <a href="mailto:jcs@rt.fm">Joshua Stein</a>.<br>
1.38      brian     434: Updated every 2 hours.
1.37      brian     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.37      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.30      brian     459:
1.47      brian     460: <dl>
1.44      brian     461: <dt><strong>skeleton.phys.spbu.ru</strong></dt>
                    462: <dd><p>
1.46      brian     463: located in St. Petersburg State University, St. Petersburg, Russia;
1.44      brian     464: maintained by <a href="mailto:kab00m@lich.phys.spbu.ru">Dima Veselov</a>.<br>
                    465: Updated every 4 hours.
                    466: <p>
                    467: Available collections:
                    468: <table>
1.49      jufi      469: <tr><td width="20"></td>
1.44      brian     470:     <td><strong>OpenBSD-ports</strong></td>
                    471:     <td>- The <b>ports</b> repository</td></tr>
                    472: </table>
                    473: </dd>
                    474: </dl>
                    475:
1.52      brian     476: <dl>
1.58      naddy     477: <dt><strong>cvsup.jp.OpenBSD.org</strong></dt>
1.52      brian     478: <dd><p>
                    479: located at Otemachi, Tokyo, Japan;
1.57      brian     480: maintained by <a href="mailto:cvsupadm@openbsd.bsdlab.org">CVSup Administrator</a>.<br>
1.52      brian     481: Updated every 3 hours.
                    482: <p>
                    483: Available collections:
                    484: <table>
                    485: <tr><td width="20"></td>
                    486:     <td><strong>OpenBSD-src</strong></td>
1.102     steven    487:     <td>- The <b>src</b> repository</td></tr>
1.52      brian     488: <tr><td></td>
                    489:     <td><strong>OpenBSD-ports</strong></td>
                    490:     <td>- The <b>ports</b> repository</td></tr>
                    491: <tr><td></td>
                    492:     <td><strong>OpenBSD-www</strong></td>
                    493:     <td>- The <b>www</b> repository</td></tr>
                    494: <tr><td></td>
                    495:     <td><strong>OpenBSD-x11</strong></td>
                    496:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    497: <tr><td></td>
                    498:     <td><strong>OpenBSD-xf4</strong></td>
                    499:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    500: <tr><td></td>
                    501:     <td><strong>OpenBSD-all</strong></td>
                    502:     <td>- All OpenBSD repositories</td></tr>
                    503: </table>
                    504: </dd>
                    505: </dl>
                    506:
1.54      brian     507: <dl>
1.73      kevlo     508: <dt><strong>cvsup.tw.OpenBSD.org</strong></dt>
                    509: <dd><p>
                    510: located at National Chiao-Tung University, Taiwan;
                    511: maintained by <a href="mailto:ijliao@FreeBSD.org">Ying-Chieh Liao</a>.<br>
                    512: Updated every 2 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.73      kevlo     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:
                    538: <dl>
1.58      naddy     539: <dt><strong>wiretapped.net</strong></dt>
1.54      brian     540: <dd><p>
                    541: located in Sydney Australia;
                    542: maintained by <a href="mailto:gbayley@ausmac.net">Grant Bayley</a>.<br>
                    543: Updated every 6 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.54      brian     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:
1.63      beck      569: <dl>
                    570: <dt><a href="http://mirror.osn.de/"><strong>mirror.osn.de</strong></a></dt>
                    571: <dd><p>
                    572: located in Germany
                    573: maintained by <a href="mailto:aw@osn.de">Armin Wolfermann</a>.<br>
                    574: Updated every 4 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.63      beck      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.65      naddy     600: <dl>
1.75      nick      601: <dt><strong>cvsup2.de.openbsd.org</strong></dt>
1.65      naddy     602: <dd><p>
1.75      nick      603: also known as <strong>openbsd.informatik.uni-erlangen.de</strong>.<br>
1.65      naddy     604: located at the University of Erlangen, Germany;
1.90      grunk     605: maintained by <a href="mailto:grunk@openbsd.org">Alexander von Gernler</a>
                    606: and <a href="mailto:stuka@pestilenz.org">Christian Kollee</a>.<br>
1.80      naddy     607: Updated every 2 hours.
1.65      naddy     608: <p>
                    609: Available collections:
                    610: <table>
                    611: <tr><td width="20"></td>
                    612:     <td><strong>OpenBSD-src</strong></td>
                    613:     <td>- The <b>src</b> repository</td></tr>
                    614: <tr><td></td>
                    615:     <td><strong>OpenBSD-ports</strong></td>
                    616:     <td>- The <b>ports</b> repository</td></tr>
                    617: <tr><td></td>
                    618:     <td><strong>OpenBSD-www</strong></td>
                    619:     <td>- The <b>www</b> repository</td></tr>
                    620: <tr><td></td>
                    621:     <td><strong>OpenBSD-x11</strong></td>
                    622:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    623: <tr><td></td>
                    624:     <td><strong>OpenBSD-xf4</strong></td>
                    625:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    626: <tr><td></td>
                    627:     <td><strong>OpenBSD-all</strong></td>
                    628:     <td>- All OpenBSD repositories</td></tr>
                    629: </table>
                    630: </dd>
                    631: </dl>
                    632:
1.78      pvalchev  633: <dl>
                    634: <dt><strong>cvsup.bg.openbsd.org</strong></dt>
                    635: <dd><p>
                    636: located in Plovdiv, Bulgaria,
                    637: maintained by <a href="mailto:veno@evrocom.net">Ventsislav Velkov</a>.<br>
                    638: Updated every 2 hours.
                    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.84      nick      664: <dl>
                    665: <dt><strong><a href="http://cvsup.open.bsd.lv">cvsup.open.bsd.lv</a></strong></dt>
                    666: <dd><p>
                    667: located in Riga, Latvia;
                    668: maintained by <a href="mailto:petruha@bsd.lv">Peter Dunaskin</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.91      grunk     695: <dl>
                    696: <dt><strong>rudy.mif.pg.gda.pl</strong></dt>
                    697: <dd><p>
                    698: located at the Gdansk University of Technology, Poland;
1.92      grunk     699: maintained by <a href="mailto:szati@rudy.mif.pg.gda.pl">Lukasz Sztachanski</a>.
1.91      grunk     700: <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.95      grunk     727: <dl>
                    728: <dt><strong>mirror.public-internet.co.uk</strong></dt>
                    729: <dd><p>
                    730: located at London, UK;
                    731: maintained by <a href="mailto:tom.beard@public-internet.co.uk">Tom Beard</a>.
                    732: <br>
                    733: Updated every 2 hours from cvsup2.de.openbsd.org.
                    734: <p>
                    735: Available collections:
                    736: <table>
                    737: <tr><td width="20"></td>
                    738:     <td><strong>OpenBSD-src</strong></td>
                    739:     <td>- The <b>src</b> repository</td></tr>
                    740: <tr><td></td>
                    741:     <td><strong>OpenBSD-ports</strong></td>
                    742:     <td>- The <b>ports</b> repository</td></tr>
                    743: <tr><td></td>
                    744:     <td><strong>OpenBSD-www</strong></td>
                    745:     <td>- The <b>www</b> repository</td></tr>
                    746: <tr><td></td>
                    747:     <td><strong>OpenBSD-x11</strong></td>
                    748:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    749: <tr><td></td>
                    750:     <td><strong>OpenBSD-xf4</strong></td>
                    751:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    752: <tr><td></td>
                    753:     <td><strong>OpenBSD-all</strong></td>
                    754:     <td>- All OpenBSD repositories</td></tr>
                    755: </table>
                    756: </dd>
                    757: </dl>
                    758:
1.99      steven    759: <!--
1.96      grunk     760: <dl>
                    761: <dt><strong>anoncvs.openbsd.org.ua</strong></dt>
                    762: <dd><p>
                    763: located in Kiev, Ukraine;
                    764: maintained by <a href="mailto:hunter@mirotel.net">Sergey Smitienko</a>.
                    765: <br>
                    766: Updated every 6 hours.
                    767: <p>
                    768: Available collections:
                    769: <table>
                    770: <tr><td width="20"></td>
                    771:     <td><strong>OpenBSD-src</strong></td>
                    772:     <td>- The <b>src</b> repository</td></tr>
                    773: <tr><td></td>
                    774:     <td><strong>OpenBSD-ports</strong></td>
                    775:     <td>- The <b>ports</b> repository</td></tr>
                    776: <tr><td></td>
                    777:     <td><strong>OpenBSD-www</strong></td>
                    778:     <td>- The <b>www</b> repository</td></tr>
                    779: <tr><td></td>
                    780:     <td><strong>OpenBSD-x11</strong></td>
                    781:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    782: <tr><td></td>
                    783:     <td><strong>OpenBSD-xf4</strong></td>
                    784:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    785: <tr><td></td>
                    786:     <td><strong>OpenBSD-all</strong></td>
                    787:     <td>- All OpenBSD repositories</td></tr>
                    788: </table>
                    789: </dd>
                    790: </dl>
1.99      steven    791: -->
1.96      grunk     792:
1.97      grunk     793: <dl>
                    794: <dt><strong>cvsup.openbsd.nu</strong></dt>
                    795: <dd><p>
                    796: located in Stockholm, Sweden;
                    797: maintained by <a href="mailto:kent@openbsd.nu">Kent Riboe</a>.
                    798: <br>
                    799: Updated every 3 hours from cvsync.de.openbsd.org.
                    800: <p>
                    801: Available collections:
                    802: <table>
                    803: <tr><td width="20"></td>
                    804:     <td><strong>OpenBSD-src</strong></td>
                    805:     <td>- The <b>src</b> repository</td></tr>
                    806: <tr><td></td>
                    807:     <td><strong>OpenBSD-ports</strong></td>
                    808:     <td>- The <b>ports</b> repository</td></tr>
                    809: <tr><td></td>
                    810:     <td><strong>OpenBSD-www</strong></td>
                    811:     <td>- The <b>www</b> repository</td></tr>
                    812: <tr><td></td>
                    813:     <td><strong>OpenBSD-x11</strong></td>
                    814:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    815: <tr><td></td>
                    816:     <td><strong>OpenBSD-xf4</strong></td>
                    817:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    818: <tr><td></td>
                    819:     <td><strong>OpenBSD-all</strong></td>
                    820:     <td>- All OpenBSD repositories</td></tr>
                    821: </table>
                    822: </dd>
                    823: </dl>
                    824:
1.1       brian     825: <p>
1.87      joel      826: <em>Note:</em> If your server is listed on here with inaccurate or
                    827: unknown information, please contact
                    828: <a href="mailto:www@openbsd.org"><tt>www@openbsd.org</tt></a>.
1.1       brian     829: <p>
1.58      naddy     830: 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   831: to find out which server is nearest you.
1.1       brian     832: Problems with a server should be reported to the <b>maintainer</b> of the
                    833: server in question.
                    834: <p>
1.100     steven    835: As of August 21, 2006, the CVS repository sizes are
1.4       brian     836: <table>
1.9       naddy     837: <tr><td width="20"></td>
1.20      brian     838:     <td><strong>OpenBSD-ports</strong></td>
1.100     steven    839:     <td>- <b>222</b>MB</td></tr>
1.9       naddy     840: <tr><td></td>
1.20      brian     841:     <td><strong>OpenBSD-src</strong></td>
1.100     steven    842:     <td>- <b>1396</b>MB</td></tr>
1.9       naddy     843: <tr><td></td>
1.20      brian     844:     <td><strong>OpenBSD-www</strong></td>
1.100     steven    845:     <td>- <b>247</b>MB</td></tr>
1.9       naddy     846: <tr><td></td>
1.20      brian     847:     <td><strong>OpenBSD-x11</strong></td>
1.68      naddy     848:     <td>- <b>200</b>MB</td></tr>
1.20      brian     849: <tr><td></td>
                    850:     <td><strong>OpenBSD-xf4</strong></td>
1.100     steven    851:     <td>- <b>562</b>MB</td></tr>
1.4       brian     852: </table>
                    853: <p>
1.100     steven    854: There is an additional overhead of <b>408</b>MB for the CVSROOT
1.68      naddy     855: directory.  The overall repository size currently increases at a rate
1.85      nick      856: of about <b>400</b>MB per annum.
1.4       brian     857: <p>
1.1       brian     858: <strong>IMPORTANT NOTE:</strong>
                    859: There are a few issues relating to cryptographic software that everyone
                    860: should be aware of:
                    861: <ul>
1.9       naddy     862:   <li>
                    863:     <p>
                    864:     The OpenBSD sources are from Canada. As
1.67      nick      865:     <a href="http://www.efc.ca/pages/doc/crypto-export.html">
1.9       naddy     866:     researched by a Canadian individual</a> and as
                    867:     <a href="http://axion.physics.ubc.ca/ECL.html">
                    868:     described in the Export Control list of Canada</a>,
                    869:     it is legal to export crypto software from Canada to the world.
                    870:   </li>
                    871:   <li>
                    872:     <p>
                    873:     However, if you are outside the USA or Canada, you should not
1.72      naddy     874:     fetch the cryptographic sections of the OpenBSD sources from a
                    875:     CVSup server located in the USA. The files in question are...
1.9       naddy     876:     <ul>
                    877:       <li><tt>src/kerberosIV/*</tt></li>
1.56      miod      878:       <li><tt>src/kerberosV/*</tt></li>
1.9       naddy     879:       <li><tt>src/lib/libdes/*</tt></li>
                    880:       <li><tt>src/lib/libc/crypt/crypt.c</tt></li>
                    881:       <li><tt>src/lib/libc/crypt/morecrypt.c</tt></li>
1.56      miod      882:       <li><tt>src/sys/crypto</tt></li>
1.9       naddy     883:       <li><tt>src/sys/netinet</tt></li>
                    884:       <li><tt>src/usr.sbin/afs/src/rxkad/*</tt></li>
1.56      miod      885:       <li><tt>XF4/xc-mit/lib/Xdmcp/Wraphelp.c</tt></li>
                    886:       <li><tt>XF4/xc-old/lib/Xdmcp/Wraphelp.c</tt></li>
                    887:       <li><tt>XF4/xc/lib/Xdmcp/Wraphelp.c</tt></li>
1.9       naddy     888:     </ul>
                    889:     <p>
                    890:     Because of the USA ITAR munitions list,
                    891:     crypto software may only be exported to Canada from the USA.
                    892:   </li>
1.1       brian     893: </ul>
                    894:
                    895: <p>
                    896: The OpenBSD project is looking for more CVSup servers -- if you are
1.87      joel      897: interested, please contact
                    898: <a href="mailto:www@openbsd.org"><tt>www@openbsd.org</tt></a>
1.1       brian     899: for configuration details.
                    900:
1.21      naddy     901: <hr>
                    902: <a href="index.html"><img height="24" width="24" src="back.gif" border="0" alt="OpenBSD"></a>
1.7       brian     903: <a href="mailto:www@openbsd.org">www@openbsd.org</a>
1.105   ! grunk     904: <br><small>$OpenBSD: cvsup.html,v 1.104 2006/09/25 18:31:14 naddy Exp $</small>
1.1       brian     905:
                    906: </body>
                    907: </html>