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

Annotation of www/anoncvs.html, Revision 1.417

1.320     sthen       1: <!-- DO NOT EDIT ANONCVS.HTML MANUALLY - IT IS GENERATED FROM TEMPLATES!
                      2:      See comments in www/build/mirrors.dat for details -->
1.246     steven      3:
1.180     jufi        4: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
1.1       deraadt     5: <html>
                      6: <head>
1.93      deraadt     7: <title>OpenBSD AnonCVS</title>
                      8: <meta name="resource-type" content="document">
1.249     nick        9: <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
1.93      deraadt    10: <meta name="description" content="How to get OpenBSD updates via Internet using Anonymous CVS">
                     11: <meta name="keywords" content="openbsd,anoncvs,updates">
                     12: <meta name="distribution" content="global">
1.394     sthen      13: <meta name="copyright" content="This document copyright 1996-2014 by OpenBSD.">
1.1       deraadt    14: </head>
                     15:
1.226     nick       16: <body bgcolor="#ffffff" text="#000000">
1.1       deraadt    17:
1.249     nick       18: <a href="index.html"><img alt="[OpenBSD]" height="30" width="141" src="images/smalltitle.gif" border="0"></a>
1.93      deraadt    19: <p>
1.135     naddy      20: <h2><font color="#e00000">Anonymous CVS</font></h2>
1.14      downsj     21:
1.135     naddy      22: <hr>
                     23:
1.249     nick       24: Anonymous CVS is a method of keeping your local copy of the OpenBSD source
                     25: tree up to date with respect to changes made to current OpenBSD sources.
                     26: In addition to following the bleeding edge of development, it is
                     27: also possible to track the patches for errata of a release.
1.99      ericj      28:
1.14      downsj     29: <p>
1.249     nick       30: The major advantage of Anonymous CVS over other source code update
                     31: techniques is that it works directly against a central source code
                     32: repository or mirror.  This means that you have the full set of CVS
                     33: commands available to control merging and updating your changes with
                     34: other source changes and for performing diffs, change histories
                     35: and other queries against the central repository.
1.99      ericj      36:
1.36      deraadt    37: <p>
1.282     nick       38: The OpenBSD Project currently has four active and two historic
                     39: source repositories:
1.99      ericj      40:
                     41: <ul>
1.249     nick       42:   <li><b>src</b> - Houses all source code for the OpenBSD Operating System.
1.329     steven     43:   <li><b>ports</b> - Houses the <a href="faq/ports/index.html">OpenBSD Ports</a>.
1.249     nick       44:   <li><b>www</b> - Houses all OpenBSD web pages. (Including this one).
1.280     steven     45:   <li><b>xenocara</b> - Houses OpenBSD's active X.org v7 source tree.
1.282     nick       46:   <li><b>X11</b> and <b>XF4</b> - Houses OpenBSD's adaptation of the
                     47:       <a href="http://www.XFree86.org/">XFree86-3</a> and XFree86-4
                     48:       source trees.
                     49:       These are here just for historical purposes, most users will have
                     50:       no reason to use this tree, it is no longer being used.
1.99      ericj      51: </ul>
                     52:
1.100     ericj      53: <p>
1.249     nick       54: To summarize, the real strength of using Anonymous CVS is that it is
                     55: a "tolerant" source code control system - it <strong>respects</strong>
                     56: changes that you have made to your local sources and makes <strong>
                     57: "best efforts"</strong> to update your entire source tree, rather than
                     58: leaving you a list of arcane problems that have to be resolved before
                     59: continuing.
                     60:
                     61: <h3><a name="CVS"><font color="#0000e0">What is CVS?</font></a></h3>
                     62:
                     63: <p>
1.260     nick       64: <a href="http://ximbiot.com/cvs/">CVS</a> is the source code control
1.407     jcs        65: system used to manage the OpenBSD source tree.
1.249     nick       66: It implements a central repository for all officially released source code
                     67: and changes, while permitting developers to maintain local copies of the
                     68: source code with their working changes.
1.226     nick       69:
1.249     nick       70: There are two levels of source tree access:
1.226     nick       71: <ul>
1.249     nick       72: <li><b>Read-write access for developers:</b>
                     73: Developers who need to commit changes to the source tree must have an
                     74: account on the OpenBSD machines.
                     75: Getting this access will be a natural result of working on the sources
                     76: with other OpenBSD developers.
                     77: If someone does some good work and shows they can work with the team,
                     78: they will get an account.
                     79:
                     80: <li><b>Read-only access for everyone:</b>
                     81: Anyone can access the read-only CVS repositories.
                     82: These copies of the read-write CVS repository are mirrored often.
1.226     nick       83: </ul>
1.99      ericj      84:
1.15      grr        85: <p>
1.249     nick       86: The major strength of CVS is that it has the ability to perform intelligent
                     87: merges of changes to the central repository with changes that you make to
                     88: your local copy.  This means that if you make a change to a module and
                     89: perform an update, your changes are not "blown away", rather CVS makes
                     90: best efforts to merge the changes made to the central sources with changes
                     91: you've made to your local copy.
                     92:
                     93: <p>
                     94: In the event that the changes can't be completely merged, CVS provides a
                     95: "soft fallback", providing you with annotated changes to your
                     96: local copy, preserving an unmodified copy of your version and continuing
                     97: to update any other source modules you requested.
1.370     rpe        98:
1.249     nick       99: <h3><a name="starting"><font color="#0000e0">Getting Started Using Anonymous
                    100: CVS</font></a></h3>
                    101:
                    102: While you can download the entire source tree from an AnonCVS server,
                    103: you can often save a lot of time and bandwidth by "preloading" your
                    104: source tree with the source files from either the OpenBSD CD or from an
                    105: FTP server.
                    106: This is particularly true if you are running
                    107: <a href="stable.html"><i>-stable</i></a>, as relatively few files change
                    108: between the <i>-release</i> and <i>-stable</i>.
1.100     ericj     109:
1.22      niklas    110: <p>
1.249     nick      111: To extract the source tree from the CD to <i>/usr/src</i> (assuming the CD is
                    112: mounted on /mnt):
1.22      niklas    113: <pre>
1.280     steven    114:     # <b>cd /usr/src</b>
                    115:     # <b>tar xzf /mnt/src.tar.gz</b>
1.282     nick      116:     # <b>cd /usr</b>
1.280     steven    117:     # <b>tar xzf /mnt/xenocara.tar.gz</b>
1.226     nick      118:     # <b>tar xzf /mnt/ports.tar.gz</b>
1.22      niklas    119: </pre>
1.224     nick      120:
1.249     nick      121: The source files for download from the FTP servers are separated into two
                    122: files to minimize the time required to download for those wishing to work
                    123: with only one part of the tree.  The two files are <tt>sys.tar.gz</tt>,
                    124: which contains the files used to create the kernel, and <tt>src.tar.gz</tt>
                    125: which contains all the other "userland" utilities.
                    126: In general, however, you will usually want both of them installed.
1.280     steven    127: Assuming the downloaded files, <tt>src.tar.gz</tt>,
                    128: <tt>sys.tar.gz</tt> and <tt>xenocara.tar.gz</tt> are in <tt>/usr</tt>:
1.224     nick      129:
1.22      niklas    130: <pre>
1.224     nick      131:     # <b>cd /usr/src</b>
                    132:     # <b>tar xzf ../sys.tar.gz</b>
1.225     nick      133:     # <b>tar xzf ../src.tar.gz</b>
1.282     nick      134:     # <b>cd /usr</b>
1.284     steven    135:     # <b>tar xzf xenocara.tar.gz</b>
1.226     nick      136:     # <b>tar xzf ports.tar.gz</b>
1.22      niklas    137: </pre>
1.100     ericj     138:
                    139: <p>
1.249     nick      140: Not all people will wish to unpack all the file sets, but as the system
                    141: must be kept in sync, you will generally need to set up all trees.
1.226     nick      142:
                    143: <p>
1.249     nick      144: You can also just use cvs(1) to "<b>checkout</b>" the source repository
                    145: for you. This is discussed in the <a href="#using">next section</a>.
1.100     ericj     146:
                    147: <p>
1.249     nick      148: After this, <tt>/usr/src</tt> will be a nice checkout area where all
                    149: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=cvs&amp;sektion=1&amp;format=html">
                    150: cvs(1)</a> commands will work properly.
1.100     ericj     151:
1.370     rpe       152: <h3><a name="using"><font color="#0000e0">Using CVS to Get and Update your
                    153: Source Tree</font></a></h3>
1.100     ericj     154:
                    155: <p>
1.249     nick      156: CVS was designed to be a simple way to retrieve and update your sources.
                    157: You must first decide whether you want to track <i>-current</i> or a
                    158: <a href="stable.html">patch branch</a>.
                    159: The current tree has all of the up to the minute changes,
                    160: whereas a patch branch contains a formal release plus the patches
                    161: from the <a href="errata.html">errata</a> and lesser issues already applied.
                    162: For more information on these "flavors" of OpenBSD, see
                    163: <a href="faq/faq5.html#Flavors">here</a>.
                    164:
                    165: <p>Once you have decided which tree to follow, you must choose which Anonymous
                    166: CVS server you are going to use.  A list of these servers is
                    167: <a href="#CVSROOT">below</a>.
                    168:
                    169: <p>
                    170: Once you have chosen which <a href="#CVSROOT">Anonymous CVS Server</a> you will
                    171: use, you can start using cvs. For those of you
                    172: who have CDs you can start with the CVS checkout that is on the CD by using
                    173: the method <a href="#starting">above</a> to get the sources onto your system.
                    174: If you don't have a CD handy, use the method below to checkout the sources.
1.100     ericj     175:
1.370     rpe       176: <p>
                    177: <ul><li>First, start out by `get'-ing an initial tree:
                    178:
                    179: <p> (If you are following <i>current</i>):
1.135     naddy     180: <pre>
1.370     rpe       181:        # <strong>cd /usr</strong>
                    182:        # <strong>cvs -qd anoncvs@anoncvs.ca.openbsd.org:/cvs get -P src</strong>
1.135     naddy     183: </pre>
1.99      ericj     184:
1.414     nick      185: <p> (If you are following the patch branch for 5.6):
1.370     rpe       186: <pre>
                    187:        # <strong>cd /usr</strong>
1.414     nick      188:        # <strong>cvs -qd anoncvs@anoncvs.ca.openbsd.org:/cvs get -rOPENBSD_5_6 -P src</strong>
1.370     rpe       189: </pre>
1.394     sthen     190: <!-- DO NOT EDIT ANONCVS.HTML MANUALLY - IT IS GENERATED FROM TEMPLATES! -->
1.370     rpe       191:
1.394     sthen     192: Anonymous CVS uses passwordless SSH as a transport.
                    193: If this is the first time you have connected to an anoncvs server,
                    194: you will be asked to confirm the SSH fingerprint to ensure that you
                    195: are connecting to the expected server:
                    196:
                    197: <pre>
1.403     sthen     198:        $ <strong>cvs -d anoncvs@anoncvs.spacehopper.org:/cvs get src
1.394     sthen     199:        The authenticity of host 'anoncvs.spacehopper.org (2001:470:1f09:9a9::b5d)' can't be established.
                    200:        ED25519 key fingerprint is 65:ff:bc:e5:c0:a3:e2:17:fa:da:83:ce:de:29:fd:8b.
                    201:        Are you sure you want to continue connecting (yes/no)?</strong>
                    202: </pre>
                    203:
                    204: In most cases, the list below includes the fingerprints for the server,
                    205: so you can compare it against the displayed fingerprint as additional
                    206: verification that you are connecting to the correct server.
                    207: Confirm this, and the fingerprint will then be saved as usual.
                    208:
                    209: <pre>
                    210:        <strong>Are you sure you want to continue connecting (yes/no)? yes
                    211:        Warning: Permanently added 'anoncvs.spacehopper.org' (ED25519) to the list of known hosts.</strong>
                    212:        ...
                    213: </pre>
1.370     rpe       214:
                    215: <li> Anytime afterwards, to `update' this tree:
                    216: <p> (If you are following <i>current</i>):
                    217: <pre>
                    218:        # <strong>cd /usr/src</strong>
                    219:        # <strong>cvs -q up -Pd</strong>
                    220: </pre>
                    221:
1.414     nick      222: <p> (If you are following the patch branch for 5.6):
1.370     rpe       223: <pre>
                    224:        # <strong>cd /usr/src</strong>
1.414     nick      225:        # <strong>cvs -q up -rOPENBSD_5_6 -Pd</strong>
1.370     rpe       226: </pre>
                    227:
                    228: Every time you ran this it would synchronize your /usr/src tree.
                    229: It would not destroy any of your local changes, rather it would attempt
                    230: to merge changes in.
                    231:
1.1       deraadt   232: <p>
1.370     rpe       233: <li> NOTE:
                    234: If you are updating a source tree that you initially fetched
                    235: from a different server, or from a CD, you <strong>must</strong>
1.394     sthen     236: add the <em>-d [cvsroot]</em> option to cvs.
1.370     rpe       237: <pre>
                    238:        # <strong>cd /usr/src</strong>
                    239:        # <strong>cvs -d anoncvs@anoncvs.ca.openbsd.org:/cvs -q up -Pd</strong>
                    240: </pre>
                    241: </ul>
1.1       deraadt   242:
1.370     rpe       243: <p>
                    244: To <a name="ports">use</a> <a href="faq/ports/index.html">ports</a>,
                    245: it is similar to src:
                    246: <ul><li>
                    247: <p> (If you are following <i>current</i>):
                    248: <pre>
                    249:        # <strong>cd /usr</strong>
                    250:        # <strong>cvs -qd anoncvs@anoncvs.ca.openbsd.org:/cvs get -P ports</strong>
                    251: </pre>
1.414     nick      252: <p> (If you are following the patch branch for 5.6):
1.135     naddy     253: <pre>
1.370     rpe       254:        # <strong>cd /usr</strong>
1.414     nick      255:        # <strong>cvs -qd anoncvs@anoncvs.ca.openbsd.org:/cvs get -rOPENBSD_5_6 -P ports</strong>
1.135     naddy     256: </pre>
1.370     rpe       257: <li> Anytime afterwards, to `update' this tree:
                    258: <p> (If you are following <i>current</i>):
                    259: <pre>
                    260:        # <strong>cd /usr/ports</strong>
                    261:        # <strong>cvs -q up -Pd</strong>
                    262: </pre>
1.414     nick      263: <p> (If you are following the patch branch for 5.6):
1.370     rpe       264: <pre>
                    265:        # <strong>cd /usr/ports</strong>
1.414     nick      266:        # <strong>cvs -q up -rOPENBSD_5_6 -Pd</strong>
1.370     rpe       267: </pre>
                    268: </ul>
                    269:
                    270: In the above example, <i>-q</i> is optional, only intended to minimize
                    271: cvs's output.
                    272: For those who like to see screenfulls of output, it can be omitted.
                    273:
                    274: <p>
                    275: To make a diff of a locally patched module (here <i>cd.c</i>) to include with
                    276: a bug report:
                    277: <pre>
                    278:        # <strong>cd /usr</strong>
                    279:        # <strong>cvs diff -u src/sys/scsi/cd.c &gt; /tmp/patch</strong>
                    280: </pre>
                    281:
1.1       deraadt   282: <p>
1.370     rpe       283: The <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=cvs&amp;sektion=1&amp;format=html">
                    284: cvs(1) man page</a>
                    285: (included with the CVS sources) has much more
                    286: information about how CVS can be used.
                    287:
                    288: <p>
                    289: <strong>Warning:</strong>
                    290: When using cvs you should take care that your current directory is either
                    291: the root of the tree you are referencing or in a separate place such as /tmp.
                    292: Some commands such as "get" can create an arbitrary sub-tree in the current
                    293: directory, and a subsequent update will recursively flesh out this sub-tree.
                    294:
                    295: <p>
                    296: The anoncvs service gives fledgling developers a chance to learn CVS
                    297: operation and get thoroughly involved in the development process
                    298: before getting "commit" access -- as a result of showing useful
                    299: skills and high quality results they will naturally later be given
                    300: developer access.
                    301: As well, people providing patches can create their "diff"s relative
                    302: to the CVS tree, which will ease integration.
                    303:
                    304: <h3><a name="EXAMPLE"><font color="#0000e0">Example usages for cvs(1)</font>
                    305: </a></h3>
1.100     ericj     306:
1.370     rpe       307: <p>
                    308: A sample use of an anoncvs server would be:
                    309: <pre>
                    310: $ <strong>cd /tmp</strong>
                    311: $ <strong>cvs -d anoncvs@anoncvs.ca.openbsd.org:/cvs get src/sys/arch/sparc</strong>
                    312:     [copies the files from the repository to your machine]
                    313: $ <strong>cd src/sys/arch/sparc</strong>
                    314: $ <strong>cvs log locore.s</strong>
                    315:     [shows the commit log for the chosen file]
                    316: $ <strong>cvs diff -bc -r1.1 -r1.5 locore.s</strong>
                    317:     [shows the changes between revisions 1.1 and rev 1.5]
                    318: </pre>
1.100     ericj     319:
1.249     nick      320: <h3><a name="CVSROOT"><font color="#0000e0">Available Anonymous CVS Servers
1.155     jsyn      321: </font></a></h3>
1.1       deraadt   322:
                    323: <p>
                    324: <ul>
1.373     dlg       325: <li><strong>CVSROOT=anoncvs@anoncvs.au.openbsd.org:/cvs</strong><br>
                    326: Location: Brisbane, Australia.<br>
                    327: Maintained by <a href="mailto:dlg@openbsd.org">David Gwynne</a>.<br>
                    328: Protocols: ssh.<br>
                    329: Updated hourly.<br>
                    330: SSH fingerprints:<br>
1.417   ! naddy     331: (RSA) <tt>MD5:19:4c:e2:a8:9e:42:b2:91:f3:d5:04:cf:b5:61:5e:ea</tt><br>
        !           332: (DSA) <tt>MD5:80:ff:d2:46:70:51:7d:09:a5:71:83:bb:89:98:44:b1</tt><br>
        !           333: (ECDSA) <tt>MD5:fa:57:1c:55:7c:aa:d0:bc:4c:e2:05:3d:9b:bb:83:2d</tt><br>
1.373     dlg       334: <p>
1.322     sthen     335: <li><strong>CVSROOT=anoncvs@ftp5.eu.openbsd.org:/cvs</strong><br>
                    336: Host also known as <strong>anga.funkfeuer.at</strong>.<br>
1.271     martin    337: Location: Vienna, Austria.<br>
1.386     martin    338: Maintained by <a href="mailto:martin@catai.org">Martin Reindl</a>.<br>
                    339: Protocols: ssh.<br>
                    340: Updated hourly.<br>
1.273     martin    341: SSH fingerprints:<br>
1.417   ! naddy     342: (RSA) <tt>MD5:e4:a7:3a:ab:e1:a7:c8:eb:5c:f4:ff:38:95:6f:81:f2</tt><br>
        !           343: (DSA) <tt>MD5:66:03:a3:bc:46:85:f3:6c:4b:6b:e3:d4:f5:5f:a6:c4</tt><br>
        !           344: (ECDSA) <tt>MD5:47:07:69:c4:6c:1f:09:ed:f5:2c:02:af:a0:e9:67:85</tt><br>
        !           345: (ED25519) <tt>MD5:32:0b:33:5f:81:77:5c:3b:0c:f6:85:fe:f0:7c:10:ea</tt><br>
1.271     martin    346: <p>
1.246     steven    347: <li><strong>CVSROOT=anoncvs@anoncvs1.ca.openbsd.org:/cvs</strong><br>
1.249     nick      348: Host also known as <strong>anoncvs.ca.openbsd.org, openbsd.sunsite.ualberta.ca</strong>.<br>
1.328     sthen     349: Location: Alberta, Canada.<br>
1.249     nick      350: Maintained by <a href="mailto:beck@ualberta.ca">Bob Beck</a>.<br>
1.295     beck      351: Protocols: ssh, ssh port 2022.<br>
1.249     nick      352: Updated every 2 hours.<br>
1.246     steven    353: <p>
1.398     brad      354: <li><strong>CVSROOT=anoncvs@anoncvs.comstyle.com:/cvs</strong><br>
                    355: Location: Toronto, Canada.<br>
                    356: Maintained by <a href="mailto:brad@comstyle.com">Brad Smith</a>.<br>
                    357: Protocols: ssh, ssh port 2022.<br>
                    358: Updated hourly.<br>
                    359: SSH fingerprints:<br>
1.417   ! naddy     360: (RSA) <tt>MD5:43:30:9a:c6:c4:19:80:ad:7d:58:3e:7a:a0:39:57:53</tt><br>
        !           361: (DSA) <tt>MD5:66:a1:f9:47:26:d9:15:3c:62:2b:b5:e8:0d:89:4a:6f</tt><br>
        !           362: (ECDSA) <tt>MD5:62:28:13:ea:cd:ba:68:e6:e9:82:94:ac:10:7f:80:d5</tt><br>
        !           363: (ED25519) <tt>MD5:65:34:d5:69:47:38:58:01:47:5d:bd:09:9d:69:be:6b</tt><br>
1.398     brad      364: <p>
1.400     nick      365: <li><strong>CVSROOT=anoncvs@openbsd.cs.toronto.edu:/cvs</strong><br>
                    366: Location: University of Toronto, Toronto, ON, Canada.<br>
                    367: Maintained by <a href="mailto:nick@holland-consulting.net">Nick Holland</a>.<br>
                    368: Protocols: ssh.<br>
                    369: Updated every 2 hours.<br>
                    370: SSH fingerprints:<br>
1.417   ! naddy     371: (RSA) <tt>MD5:bc:59:dc:6f:52:c9:80:2d:63:96:cd:34:e2:5a:fc:fd</tt><br>
        !           372: (DSA) <tt>MD5:46:df:59:8c:e9:e3:5d:2c:1d:e3:d8:9f:61:8a:3c:ab</tt><br>
        !           373: (ECDSA) <tt>MD5:9b:39:30:30:63:01:fa:ec:66:4f:63:3d:9a:7e:76:38</tt><br>
        !           374: (ED25519) <tt>MD5:e2:38:fc:a8:a0:17:ad:7b:03:8a:49:b7:94:40:a0:d5</tt><br>
1.400     nick      375: <p>
1.374     sthen     376: <li><strong>CVSROOT=anoncvs@anoncvs.estpak.ee:/OpenBSD</strong><br>
                    377: Location: Elion, Tallinn, Estonia.<br>
                    378: Maintained by <a href="mailto:rix@estpak.ee">Rivo Nurges</a>.<br>
                    379: Protocols: ssh.<br>
1.387     nick      380: Updated every 2 hours.<br>
1.374     sthen     381: SSH fingerprints:<br>
1.417   ! naddy     382: (RSA) <tt>MD5:e1:12:fb:6b:e5:c0:6a:b3:f8:ca:b1:4c:20:fb:5e:07</tt><br>
        !           383: (DSA) <tt>MD5:bb:5c:44:f4:d9:12:3b:22:08:a9:12:c5:0c:e7:db:49</tt><br>
        !           384: (ECDSA) <tt>MD5:d7:46:c9:1e:43:e8:23:7b:4c:cb:5c:75:21:77:f9:bd</tt><br>
        !           385: (ED25519) <tt>MD5:a7:f6:ff:1a:31:cb:11:0c:84:d5:6b:28:b7:05:c6:7c</tt><br>
1.374     sthen     386: <p>
1.328     sthen     387: <li><strong>CVSROOT=anoncvs@anoncvs.fr.openbsd.org:/cvs</strong><br>
                    388: Location: Paris, France.<br>
                    389: Maintained by <a href="mailto:landry@openbsd.org">Landry Breuil</a>.<br>
                    390: Protocols: ssh.<br>
                    391: Updated every 2 hours from anoncvs1.ca.openbsd.org.<br>
                    392: SSH fingerprints:<br>
1.417   ! naddy     393: (RSA) <tt>MD5:af:53:c8:ea:98:20:a2:81:e1:e3:c9:cb:06:d3:56:d7</tt><br>
        !           394: (DSA) <tt>MD5:5e:3a:78:5f:ef:0a:53:b4:b9:2c:91:84:4f:3e:52:dd</tt><br>
        !           395: (ECDSA) <tt>MD5:61:e1:2b:97:a4:65:4d:70:cd:23:3b:83:04:f1:2e:87</tt><br>
        !           396: (ED25519) <tt>MD5:10:80:7f:b7:76:03:7a:51:10:23:fb:1e:05:5b:93:74</tt><br>
1.328     sthen     397: <p>
1.381     sthen     398: <li><strong>CVSROOT=anoncvs@openbsd.cs.fau.de:/cvs</strong><br>
                    399: Host also known as <strong>openbsd.informatik.uni-erlangen.de</strong>.<br>
                    400: Location: University of Erlangen-Nuremberg, Erlangen, Germany.<br>
                    401: Maintained by <a href="mailto:simon@blarzwurst.de">Simon Kuhnle</a>.<br>
                    402: Protocols: ssh, ssh port 2022.<br>
                    403: Updated every 2 hours from anoncvs.spacehopper.org.<br>
                    404: SSH fingerprints:<br>
1.417   ! naddy     405: (RSA) <tt>MD5:d0:f2:0c:a3:bf:28:ba:18:50:5f:04:dc:13:ed:63:42</tt><br>
        !           406: (DSA) <tt>MD5:9f:a1:78:0b:d4:76:68:bf:3e:83:d0:41:c8:1e:33:8b</tt><br>
        !           407: (ECDSA) <tt>MD5:f0:d1:64:e6:6b:2f:9e:1e:85:aa:75:e3:a0:52:d3:5a</tt><br>
1.381     sthen     408: <p>
1.246     steven    409: <li><strong>CVSROOT=anoncvs@mirror.osn.de:/cvs</strong><br>
1.249     nick      410: Location: N&uuml;rnberg, Germany.<br>
                    411: Maintained by <a href="mailto:aw@osn.de">Armin Wolfermann</a>.<br>
                    412: Protocols: ssh.<br>
1.307     sthen     413: Updated every 3 hours.<br>
1.215     david     414: SSH fingerprints:<br>
1.417   ! naddy     415: (RSA) <tt>MD5:f2:73:d2:f6:e3:01:ef:ca:3b:e7:6c:80:b6:bd:bb:84</tt><br>
        !           416: (DSA) <tt>MD5:fb:33:05:62:96:20:cf:88:7e:10:cb:8d:91:72:57:32</tt><br>
1.246     steven    417: <p>
1.406     florian   418: <li><strong>CVSROOT=anoncvs@ftp.hostserver.de:/cvs</strong><br>
                    419: Location: Frankfurt, Germany.<br>
                    420: Maintained by <a href="mailto:mirror@hostserver.de">Sebastian Benoit, Florian Obser</a>.<br>
                    421: Protocols: ssh.<br>
                    422: Updated hourly from anoncvs1.ca.openbsd.org.<br>
                    423: SSH fingerprints:<br>
1.417   ! naddy     424: (RSA) <tt>MD5:ab:02:37:76:d9:f8:5b:3a:10:54:dc:8b:47:ef:c0:73</tt><br>
        !           425: (DSA) <tt>MD5:d1:0f:17:ee:06:f3:a4:ed:79:a2:eb:83:40:1b:7b:63</tt><br>
        !           426: (ECDSA) <tt>MD5:fc:6d:06:54:ba:ed:7e:c2:d6:69:fb:c7:95:58:7b:c4</tt><br>
        !           427: (ED25519) <tt>MD5:1d:16:e2:2a:f2:85:28:b6:33:43:cb:de:c5:ad:fb:e9</tt><br>
1.406     florian   428: <p>
1.246     steven    429: <li><strong>CVSROOT=anoncvs@anoncvs.jp.openbsd.org:/cvs</strong><br>
1.249     nick      430: Host also known as <strong>kankoromochi.econ.nagasaki-u.ac.jp</strong>.<br>
                    431: Location: Nagasaki University, Faculty of Economics, Nagasaki, Japan.<br>
1.410     sthen     432: Maintained by <a href="mailto:sigh@nagasaki-u.ac.jp">SUZUKI Hitoshi</a>.<br>
1.249     nick      433: Protocols: ssh, pserver.<br>
                    434: Updated every 3 hours.<br>
1.410     sthen     435: SSH fingerprints:<br>
1.417   ! naddy     436: (RSA) <tt>MD5:80:6d:6b:9e:2b:5e:a3:fa:cc:bb:f7:fe:46:9f:ce:be</tt><br>
        !           437: (DSA) <tt>MD5:f3:8e:b4:d0:00:26:f1:1b:5b:98:50:ad:d4:94:23:98</tt><br>
        !           438: (ECDSA) <tt>MD5:dc:8b:b9:2f:4d:20:73:62:a9:3b:f8:ce:09:10:dc:b8</tt><br>
        !           439: (ED25519) <tt>MD5:af:b8:2d:3c:0a:a0:89:15:cb:8f:c0:ad:e7:95:08:df</tt><br>
1.176     miod      440: <p>
1.267     grunk     441: <li><strong>CVSROOT=anoncvs@anoncvs.obsd.si:/cvs</strong><br>
                    442: Location: Ljubljana, Slovenia.<br>
1.397     naddy     443: Maintained by <a href="mailto:mitja@kerberos.si">Mitja Mu&#382;eni&#269;</a>.<br>
1.267     grunk     444: Protocols: ssh.<br>
1.377     sthen     445: Updated every 2 hours from anoncvs.spacehopper.org.<br>
1.376     sthen     446: SSH fingerprints:<br>
1.417   ! naddy     447: (RSA) <tt>MD5:5b:98:6c:06:a4:1f:83:da:03:aa:ef:e4:f5:f0:99:76</tt><br>
        !           448: (DSA) <tt>MD5:2d:57:e2:9c:fd:9d:09:1c:5e:ff:3f:5d:59:78:93:cc</tt><br>
        !           449: (ECDSA) <tt>MD5:3f:50:bd:1e:e5:8a:3d:a4:16:22:1c:2d:cf:8b:22:ed</tt><br>
1.267     grunk     450: <p>
1.328     sthen     451: <li><strong>CVSROOT=anoncvs@anoncvs.eu.openbsd.org:/cvs</strong><br>
                    452: Location: Stockholm University, Stockholm, Sweden.<br>
1.369     sthen     453: Maintained by <a href="mailto:jj@openbsd.org, ftp@it.su.se">Janne Johansson</a>.<br>
1.328     sthen     454: Protocols: ssh.<br>
                    455: Updated every 2 hours.<br>
                    456: SSH fingerprints:<br>
1.417   ! naddy     457: (RSA) <tt>MD5:98:e6:80:5d:95:bb:e2:15:5e:19:4d:a3:e4:d0:bc:2c</tt><br>
        !           458: (DSA) <tt>MD5:55:cd:a7:a9:e3:bc:a5:5c:81:5e:98:c0:60:a2:67:52</tt><br>
        !           459: (ECDSA) <tt>MD5:a4:c1:8f:64:55:87:35:d6:82:8b:ba:cb:48:3f:be:96</tt><br>
1.343     sthen     460: <p>
1.328     sthen     461: <li><strong>CVSROOT=anoncvs@anoncvs.spacehopper.org:/cvs</strong><br>
                    462: Location: London, United Kingdom.<br>
                    463: Maintained by <a href="mailto:sthen@openbsd.org">Stuart Henderson</a>.<br>
1.354     sthen     464: Protocols: ssh, ssh port 2022, ssh port 443.<br>
1.328     sthen     465: Updated hourly from anoncvs.ca.openbsd.org.<br>
                    466: SSH fingerprints:<br>
1.417   ! naddy     467: (RSA) <tt>SHA256:orTIOu6IKP7Ndz317tyCaz8LJnJWz4jmzSuG+FK7jwM</tt>, <tt>MD5:e2:19:16:3f:a3:2e:eb:94:14:cd:5c:92:9a:6c:9a:8f</tt><br>
        !           468: (DSA) <tt>SHA256:0t4AQyR4Ci5hICZwPQ+l4b5l9evisj+wtry70ZWivZM</tt>, <tt>MD5:ff:47:13:22:83:d1:6e:df:a0:f0:4f:18:31:cb:f2:28</tt><br>
        !           469: (ECDSA) <tt>SHA256:p+VCx2KynGtiFFaaiF010SIQu6gJgmJb//yokW2sGBE</tt>, <tt>MD5:a5:b0:2a:65:ff:9a:0b:ef:7d:6f:d2:95:2e:a7:c9:2c</tt><br>
        !           470: (ED25519) <tt>SHA256:oaJ7VEyjt2EHMeixzKn9zJGiV5YlWHIUls070tKdBzI</tt>, <tt>MD5:65:ff:bc:e5:c0:a3:e2:17:fa:da:83:ce:de:29:fd:8b</tt><br>
1.328     sthen     471: <p>
                    472: <li><strong>CVSROOT=anoncvs@anoncvs1.usa.openbsd.org:/cvs</strong><br>
                    473: Host also known as <strong>anoncvs.usa.openbsd.org, anoncvs4.usa.openbsd.org</strong>.<br>
1.364     sthen     474: Location: Internet Systems Consortium, Redwood City, CA, USA.<br>
1.328     sthen     475: Maintained by <a href="mailto:millert@openbsd.org">Todd C. Miller</a>.<br>
                    476: Protocols: rsh, ssh, ssh port 2022, pserver.<br>
                    477: Updated every 2 hours.<br>
                    478: SSH fingerprints:<br>
1.417   ! naddy     479: (RSA) <tt>MD5:49:67:9a:46:62:8a:3f:4e:b3:63:ca:d6:41:29:2a:2f</tt><br>
        !           480: (DSA) <tt>MD5:a7:75:49:77:f3:47:d1:3c:5e:65:84:84:3b:03:f1:33</tt><br>
        !           481: (ECDSA) <tt>MD5:d3:b2:b5:68:87:3b:f6:93:21:fd:28:ea:cc:b6:e1:13</tt><br>
1.328     sthen     482: <p>
                    483: <li><strong>CVSROOT=anoncvs@anoncvs3.usa.openbsd.org:/cvs</strong><br>
                    484: Location: National Center for Atmospheric Research, Boulder, CO, USA.<br>
                    485: Maintained by <a href="mailto:millert@openbsd.org">Todd C. Miller</a>.<br>
                    486: Protocols: rsh, ssh, ssh port 2022, pserver.<br>
                    487: Updated every 2 hours.<br>
                    488: SSH fingerprints:<br>
1.417   ! naddy     489: (RSA) <tt>MD5:49:6f:4a:be:02:63:0d:c0:54:b0:57:f0:48:7f:ce:16</tt><br>
        !           490: (DSA) <tt>MD5:f9:ab:fc:60:a3:15:8f:9c:47:24:9e:92:15:78:0d:f3</tt><br>
        !           491: (ECDSA) <tt>MD5:99:4f:c8:23:6a:bf:75:1c:de:c9:11:bf:a4:fe:0a:51</tt><br>
1.328     sthen     492: <p>
1.415     sthen     493: <li><strong>CVSROOT=anoncvs@mirror.planetunix.net:/cvs</strong><br>
                    494: Location: Chicago, IL, USA.<br>
                    495: Maintained by <a href="mailto:brian@planetunix.net">Brian Brombacher</a>.<br>
                    496: Protocols: ssh, ssh port 2022, pserver.<br>
                    497: Updated every 3 hours from anoncvs3.usa.openbsd.org.<br>
                    498: SSH fingerprints:<br>
1.417   ! naddy     499: (RSA) <tt>MD5:8f:42:bd:b0:a2:94:df:6b:af:1e:96:03:ea:68:03:d9</tt><br>
        !           500: (DSA) <tt>MD5:26:51:e8:b3:38:88:dc:a8:2a:98:59:86:ab:40:bb:a4</tt><br>
1.415     sthen     501: <p>
1.408     sthen     502: <li><strong>CVSROOT=anoncvs@anoncvs.obsd.esc7.net:/cvs</strong><br>
                    503: Location: Dallas, TX, USA.<br>
                    504: Maintained by <a href="mailto:bwarriner@esc7.net">Ben Warriner</a>.<br>
                    505: Protocols: ssh.<br>
                    506: Updated every 2 hours from anoncvs1.usa.openbsd.org.<br>
                    507: SSH fingerprints:<br>
1.417   ! naddy     508: (RSA) <tt>MD5:2a:c8:01:6f:5c:fe:78:75:84:29:c3:11:0f:65:05:07</tt><br>
        !           509: (DSA) <tt>MD5:0e:ce:de:c4:7d:a0:d1:71:0a:af:cf:ee:34:43:bc:23</tt><br>
        !           510: (ECDSA) <tt>MD5:68:f1:e8:11:94:5c:5e:15:d0:ee:54:1f:ee:57:33:4a</tt><br>
        !           511: (ED25519) <tt>MD5:ca:ea:e7:77:84:1d:64:3d:5e:9f:25:a6:60:4c:53:52</tt><br>
1.408     sthen     512: <p>
1.246     steven    513:
1.73      deraadt   514: </ul>
1.84      beck      515:
1.73      deraadt   516: <p>
1.249     nick      517: <em>Note:</em> If your server is listed on here with inaccurate or
                    518: unknown information, please contact
                    519: <a href="mailto:beck@openbsd.org"><tt>beck@openbsd.org</tt></a>
1.104     ericj     520:
1.80      beck      521: <p>
1.249     nick      522: You may want to use
1.135     naddy     523: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=traceroute&amp;sektion=8&amp;format=html">traceroute(8)</a>
1.249     nick      524: to find out which server is nearest you.
                    525: Problems with a server should be reported to the <b>maintainer</b> of the
                    526: server in question.
1.104     ericj     527:
1.159     jcs       528: <p>
1.249     nick      529: If local policy prevents outgoing connections to ssh's default port of 22,
1.370     rpe       530: some servers permit connections on an alternative port (typically 2022).
                    531: These are noted in the list above.
                    532: To use a different port, reconfigure your ssh client by adding a "Host"
                    533: entry to <strong>$HOME/.ssh/config</strong>, e.g.:
1.135     naddy     534: <pre>
1.370     rpe       535:        Host anoncvs.ca.openbsd.org
                    536:            Port 2022
1.135     naddy     537: </pre>
1.1       deraadt   538:
1.249     nick      539: <h3><a name="MIRROR"><font color="#0000e0">Setting up an anoncvs mirror
1.155     jsyn      540: </font></a></h3>
1.105     ericj     541:
1.107     millert   542: <p>
1.249     nick      543: If you wish to setup a new anoncvs mirror site and make it available to
                    544: the general public, please contact the anoncvs
                    545: <a href="mailto:sup@openbsd.org">maintainer</a>.
1.336     johan     546: Anoncvs mirrors currently require about 5GB of disk (and it will grow!),
1.405     sthen     547: and use up to 64MB of swap
1.249     nick      548: per anoncvs user (assuming the user does a large operation; while smaller
                    549: operations use fewer resources, anoncvs still makes much more of an
1.360     lum       550: impact than ftp).  Such anoncvs machines should have excellent
1.249     nick      551: network connectivity for the area they are expected to serve.  A
                    552: <a href="anoncvs.shar">document</a>
                    553: which describes the setup of anoncvs servers is available.
                    554:
1.387     nick      555: <h3><a name="NOTES"><font color="#0000e0">Final notes</font></a></h3>
1.249     nick      556: After upgrading your source tree, you should read the comments
                    557: at the top of <kbd>/usr/src/Makefile</kbd> before attempting
                    558: a build.  Also, you should build a new kernel <strong>before</strong>
                    559: doing a <kbd>make build</kbd> if possible.  In some cases it may be
                    560: necessary to rebuild and install the <kbd>config</kbd> utility before
                    561: you can build the kernel.  If <kbd>config GENERIC</kbd> fails this
                    562: is probably the case.
                    563: <p>
                    564: It is important to note that upgrading from a release to the current tree
                    565: by rebuilding the sources can be rather difficult due to dependencies
                    566: that are often not obvious.  Therefore, it is suggested that you first
                    567: install the latest snapshot before attempting a tree build from source.
1.1       deraadt   568:
                    569: </body>
                    570: </html>