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

Annotation of www/anoncvs.html, Revision 1.528

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.493     bentley     4: <!doctype html>
                      5: <html lang=en>
                      6: <meta charset=utf-8>
                      7:
1.450     sthen       8: <title>OpenBSD Anonymous CVS</title>
                      9: <meta name="description" content="How to get OpenBSD updates via Internet using Anonymous CVS">
1.443     tb         10: <meta name="viewport" content="width=device-width, initial-scale=1">
                     11: <link rel="stylesheet" type="text/css" href="openbsd.css">
1.455     tb         12: <link rel="canonical" href="https://www.openbsd.org/anoncvs.html">
1.1       deraadt    13:
1.492     tj         14: <h2 id=OpenBSD>
1.444     tb         15: <a href="index.html">
1.492     tj         16: <i>Open</i><b>BSD</b></a>
                     17: Anonymous CVS
1.443     tb         18: </h2>
1.493     bentley    19:
1.443     tb         20: <hr>
1.493     bentley    21:
1.93      deraadt    22: <p>
1.249     nick       23: Anonymous CVS is a method of keeping your local copy of the OpenBSD source
                     24: tree up to date with respect to changes made to current OpenBSD sources.
                     25: In addition to following the bleeding edge of development, it is
1.457     tj         26: also possible to track the <a href="faq/faq10.html#Patches">errata patches</a>
                     27: of a release.
1.99      ericj      28:
1.14      downsj     29: <p>
1.459     tb         30: Anonymous CVS works directly against a central source code repository.
                     31: This means that you have the full set of CVS commands available to control
                     32: merging and updating your changes with other source changes, performing diffs,
                     33: change histories and other queries against the central repository.
                     34: In the event that the changes can't be completely merged, CVS provides annotated
                     35: changes to your local copy and preserves an unmodified copy of your version.
1.99      ericj      36:
1.36      deraadt    37: <p>
1.457     tj         38: The OpenBSD Project currently has four active source repositories:
1.99      ericj      39:
                     40: <ul>
1.457     tj         41:   <li><b>src</b> - source code for the base system
1.528   ! sthen      42:   <li><b>ports</b> - the <a href="faq/ports/">ports tree</a>
1.457     tj         43:   <li><b>www</b> - web pages
                     44:   <li><b>xenocara</b> - xenocara
1.99      ericj      45: </ul>
                     46:
1.459     tb         47: <h3 id="CVS">What is CVS?</h3>
1.249     nick       48:
1.493     bentley    49: <p>
1.457     tj         50: <a href="https://savannah.nongnu.org/projects/cvs">CVS</a> is the
1.428     schwarze   51: source code control system used to manage the OpenBSD source tree.
1.249     nick       52: It implements a central repository for all officially released source code
                     53: and changes, while permitting developers to maintain local copies of the
                     54: source code with their working changes.
1.226     nick       55:
1.493     bentley    56: <p>
1.249     nick       57: There are two levels of source tree access:
1.457     tj         58:
1.226     nick       59: <ul>
1.457     tj         60: <li>Read-write access for developers
                     61: <li>Read-only access for everyone
1.226     nick       62: </ul>
1.99      ericj      63:
1.516     tj         64: <h3 id="starting">Pre-Loading the Source Tree</h3>
1.249     nick       65:
1.493     bentley    66: <p>
1.468     tj         67: While you can download the entire source tree from an AnonCVS server, you can
                     68: save time and bandwidth by pre-loading your tree with the source tarballs.
1.249     nick       69: This is particularly true if you are running
1.480     tj         70: <a href="stable.html">-stable</a>, as relatively few files change
1.524     tj         71: between the release and -stable.
1.100     ericj      72:
1.22      niklas     73: <p>
1.459     tb         74: The source files for download from the <a href="ftp.html">mirrors</a> are
1.468     tj         75: separated into two files to reduce the download time for those wishing to
                     76: work with only one part of the tree.
1.493     bentley    77: The kernel sources are in <code>sys.tar.gz</code> and the userland sources
                     78: are in <code>src.tar.gz</code>.
1.224     nick       79:
1.468     tj         80: <p>
                     81: The following commands assume you have followed
                     82: <a href="faq/faq5.html#wsrc">these instructions</a> to give a non-root
                     83: user write access to the src, ports and xenocara directories.
                     84:
1.485     tj         85: <pre class="cmdbox">
1.468     tj         86: $ <b>cd /usr/src</b>
                     87: $ <b>tar xzf /tmp/src.tar.gz</b>
                     88: $ <b>tar xzf /tmp/sys.tar.gz</b>
                     89: $ <b>cd /usr</b>
                     90: $ <b>tar xzf /tmp/ports.tar.gz</b>
1.488     tj         91: $ <b>cd /usr/xenocara</b>
1.468     tj         92: $ <b>tar xzf /tmp/xenocara.tar.gz</b>
1.485     tj         93: </pre>
1.100     ericj      94:
1.516     tj         95: <h3 id="using">Using CVS to Get and Update Your Source Trees</h3>
1.100     ericj      96:
1.493     bentley    97: <p>
1.473     tb         98: <a href="https://man.openbsd.org/cvs">cvs(1)</a> was designed to be a simple way
1.464     tb         99: to retrieve and update your sources.
1.480     tj        100: You must first decide whether you want to track -current or a
                    101: <a href="stable.html">-stable</a> branch.
1.466     tb        102: The current tree has all of the up to the minute changes, whereas the
1.480     tj        103: -stable branch contains the sources for the release plus the patches from
1.466     tb        104: the <a href="errata.html">errata</a> and lesser issues already applied.
1.497     sthen     105: For more information on the flavors of OpenBSD, see
1.249     nick      106: <a href="faq/faq5.html#Flavors">here</a>.
                    107:
1.457     tj        108: <p>
1.459     tb        109: Choose the Anonymous CVS server you are going to use from the
                    110: <a href="#CVSROOT">list of servers</a> below, then you can start using cvs.
1.493     bentley   111: If you begin with <code>src.tar.gz</code> and <code>sys.tar.gz</code> as mentioned
                    112: above, you can skip the initial <kbd>checkout</kbd> and proceed to updating.
1.464     tb        113:
                    114: <p>
                    115: <b>Warning:</b>
                    116: When using cvs, you should take care that your current directory is either the
                    117: root of the tree you are referencing or in a separate place such as
1.493     bentley   118: <code>/tmp</code>.
                    119: Some commands, such as <kbd>cvs checkout</kbd>, can create an arbitrary sub-tree
1.476     anton     120: in the current directory, and a subsequent update will recursively flesh out
                    121: this sub-tree.
1.464     tb        122:
1.516     tj        123: <h4 id="getting">Getting an Initial Tree</h4>
1.464     tb        124:
1.493     bentley   125: <p>
                    126: The following commands assume that your user is member of the <code>wsrc</code>
1.464     tb        127: group:
1.100     ericj     128:
1.370     rpe       129: <p>
1.480     tj        130: If you are following -current:
1.457     tj        131:
1.485     tj        132: <pre class="cmdbox">
1.457     tj        133: $ <b>cd /usr</b>
1.476     anton     134: $ <b>cvs -qd anoncvs@anoncvs.ca.openbsd.org:/cvs checkout -P src</b>
1.485     tj        135: </pre>
1.370     rpe       136:
1.493     bentley   137: <p>
1.524     tj        138: If you are following the 7.3 -stable branch:
1.99      ericj     139:
1.485     tj        140: <pre class="cmdbox">
1.457     tj        141: $ <b>cd /usr</b>
1.524     tj        142: $ <b>cvs -qd anoncvs@anoncvs.ca.openbsd.org:/cvs checkout -rOPENBSD_7_3 -P src</b>
1.489     tj        143: </pre>
1.394     sthen     144: <!-- DO NOT EDIT ANONCVS.HTML MANUALLY - IT IS GENERATED FROM TEMPLATES! -->
1.370     rpe       145:
1.493     bentley   146: <p>
1.394     sthen     147: Anonymous CVS uses passwordless SSH as a transport.
1.516     tj        148: If this is the first time you have connected to a server,
1.394     sthen     149: you will be asked to confirm the SSH fingerprint to ensure that you
                    150: are connecting to the expected server:
                    151:
1.485     tj        152: <pre class="cmdbox">
1.476     anton     153: $ <b>cvs -d anoncvs@anoncvs.spacehopper.org:/cvs checkout -P src</b>
1.457     tj        154: The authenticity of host 'anoncvs.spacehopper.org (2001:67c:15f4:a423::28)' can't be established.
                    155: ED25519 key fingerprint is SHA256:oaJ7VEyjt2EHMeixzKn9zJGiV5YlWHIUls070tKdBzI.
                    156: Are you sure you want to continue connecting (yes/no)?
1.485     tj        157: </pre>
1.394     sthen     158:
1.493     bentley   159: <p>
1.394     sthen     160: In most cases, the list below includes the fingerprints for the server,
                    161: so you can compare it against the displayed fingerprint as additional
                    162: verification that you are connecting to the correct server.
                    163: Confirm this, and the fingerprint will then be saved as usual.
                    164:
1.485     tj        165: <pre class="cmdbox">
1.457     tj        166: Are you sure you want to continue connecting (yes/no)? <b>yes</b>
1.464     tb        167: Warning: Permanently added 'anoncvs.spacehopper.org' (ED25519) to the list of known hosts.
1.485     tj        168: </pre>
1.457     tj        169:
1.516     tj        170: <h4 id="updating">Updating an Existing Tree</h4>
1.457     tj        171:
1.493     bentley   172: <p>
1.480     tj        173: If you are following -current:
1.457     tj        174:
1.485     tj        175: <pre class="cmdbox">
1.457     tj        176: $ <b>cd /usr/src</b>
1.479     sthen     177: $ <b>cvs -q up -Pd -A</b>
1.485     tj        178: </pre>
1.370     rpe       179:
1.493     bentley   180: <p>
1.524     tj        181: If you are following the 7.3 -stable branch:
1.370     rpe       182:
1.485     tj        183: <pre class="cmdbox">
1.457     tj        184: $ <b>cd /usr/src</b>
1.524     tj        185: $ <b>cvs -q up -Pd -rOPENBSD_7_3</b>
1.489     tj        186: </pre>
1.370     rpe       187:
1.493     bentley   188: <p>
                    189: Every time you run this, cvs(1) synchronizes your <code>/usr/src</code> tree.
1.467     tb        190: It does not destroy any of your local changes; rather it attempts to merge
                    191: changes in.
1.370     rpe       192:
1.516     tj        193: <h4>Changing the Server</h4>
1.464     tb        194:
1.493     bentley   195: <p>
1.370     rpe       196: If you are updating a source tree that you initially fetched
1.457     tj        197: from a different server, or from a tar file, you <b>must</b>
1.394     sthen     198: add the <em>-d [cvsroot]</em> option to cvs.
1.457     tj        199:
1.485     tj        200: <pre class="cmdbox">
1.457     tj        201: $ <b>cd /usr/src</b>
                    202: $ <b>cvs -d anoncvs@anoncvs.ca.openbsd.org:/cvs -q up -Pd</b>
1.485     tj        203: </pre>
1.1       deraadt   204:
1.516     tj        205: <h4>Getting the ports and xenocara Trees</h4>
1.464     tb        206:
1.493     bentley   207: <p>
                    208: Make sure your user is member of the <code>wsrc</code> group and that
                    209: <code>/usr/ports</code> is group writable by <code>wsrc</code>.
                    210: Replace <kbd>ports</kbd> with <kbd>xenocara</kbd> throughout to get or update a
1.464     tb        211: xenocara tree.
1.457     tj        212:
1.370     rpe       213: <ul><li>
1.457     tj        214:
                    215: <p>
1.480     tj        216: If you are following -current:
1.457     tj        217:
1.485     tj        218: <pre class="cmdbox">
1.457     tj        219: $ <b>cd /usr</b>
1.476     anton     220: $ <b>cvs -qd anoncvs@anoncvs.ca.openbsd.org:/cvs checkout -P ports</b>
1.485     tj        221: </pre>
1.457     tj        222:
1.493     bentley   223: <p>
1.524     tj        224: If you are following the 7.3 -stable branch:
1.457     tj        225:
1.485     tj        226: <pre class="cmdbox">
1.457     tj        227: $ <b>cd /usr</b>
1.524     tj        228: $ <b>cvs -qd anoncvs@anoncvs.ca.openbsd.org:/cvs checkout -rOPENBSD_7_3 -P ports</b>
1.489     tj        229: </pre>
1.457     tj        230:
                    231: <li> Any time afterwards, to update this tree:
                    232:
                    233: <p>
1.480     tj        234: If you are following -current:
1.457     tj        235:
1.485     tj        236: <pre class="cmdbox">
1.457     tj        237: $ <b>cd /usr/ports</b>
1.479     sthen     238: $ <b>cvs -q up -Pd -A</b>
1.485     tj        239: </pre>
1.457     tj        240:
1.493     bentley   241: <p>
1.524     tj        242: If you are following the 7.3 -stable branch:
1.457     tj        243:
1.485     tj        244: <pre class="cmdbox">
1.457     tj        245: $ <b>cd /usr/ports</b>
1.524     tj        246: $ <b>cvs -q up -Pd -rOPENBSD_7_3</b>
1.489     tj        247: </pre>
1.457     tj        248:
1.370     rpe       249: </ul>
                    250:
1.519     tj        251: <h4>Creating a Diff</h4>
1.464     tb        252:
1.493     bentley   253: <p>
                    254: To make a diff of a locally patched module (here <code>cd.c</code>) to include with
1.370     rpe       255: a bug report:
                    256:
1.485     tj        257: <pre class="cmdbox">
1.484     tb        258: $ <b>cd /usr/src</b>
                    259: $ <b>cvs diff -u sys/scsi/cd.c &gt; /tmp/patch</b>
1.485     tj        260: </pre>
1.370     rpe       261:
1.516     tj        262: <h3 id="EXAMPLE">Example Usage</h3>
1.457     tj        263:
1.485     tj        264: <pre class="cmdbox">
1.457     tj        265: $ <b>cd /tmp</b>
1.476     anton     266: $ <b>cvs -d anoncvs@anoncvs.ca.openbsd.org:/cvs checkout -P src/sys/arch/sparc</b>
1.457     tj        267: [copies the files from the repository to your machine]
                    268: $ <b>cd src/sys/arch/sparc</b>
                    269: $ <b>cvs log locore.s</b>
                    270: [shows the commit log for the chosen file]
                    271: $ <b>cvs diff -bc -r1.1 -r1.5 locore.s</b>
                    272: [shows the changes between revisions 1.1 and rev 1.5]
1.485     tj        273: </pre>
1.100     ericj     274:
1.497     sthen     275: <h3 id="rsync">Mirroring the Repository</h3>
                    276:
                    277: <p>
                    278: As noted in the list below, some repository mirrors also allow fetching
                    279: the entire repository via rsync.
1.511     bentley   280: Please use the <code>reposync</code> wrapper script which checks for updates to
1.497     sthen     281: CVSROOT/ChangeLog and avoids a full directory scan in some cases where no update
                    282: was detected.
1.516     tj        283: It also handles SSH port forwarding for mirrors where this is available,
1.497     sthen     284: allowing to connect to an "rsync --daemon" server over an
                    285: authenticated and encrypted channel.
                    286:
                    287: <p>
1.511     bentley   288: Install <code>reposync</code> from packages, create a user and directory to
1.497     sthen     289: hold the repository, and a directory for reposync's own use:
                    290:
                    291: <pre class="cmdbox">
                    292: # <b>pkg_add reposync</b>
                    293: # <b>useradd cvs</b>
                    294: # <b>install -d -o cvs /home/cvs /var/db/reposync</b>
                    295: </pre>
                    296:
                    297: <p>
1.503     sthen     298: Now the following command might be used to mirror or update the repository.
                    299: If your chosen mirror does not support SSH port-forwarding, either switch to
                    300: a better mirror, or change to "reposync -p".
1.497     sthen     301:
                    302: <pre class="cmdbox">
1.503     sthen     303: # <b>su -m cvs -c "reposync rsync://mirror.example.org/cvs /home/cvs"</b>
1.497     sthen     304: </pre>
                    305:
                    306: <p>
                    307: After mirroring, you can use the local directory as your cvsroot, for example:
                    308:
                    309: <pre class="cmdbox">
                    310: $ <b>cd /usr/src</b>
                    311: $ <b>cvs -d /home/cvs -q up -Pd</b>
                    312: </pre>
                    313:
1.518     tj        314: <!-- XXXrelease - needs an occasional update -->
1.497     sthen     315: As of November 2019, repository sizes are as follows:
                    316:
                    317: <pre class="cmdbox">
                    318: $ <b>du -shc *</b>
                    319: 175M    CVSROOT
                    320: 1.1G    ports
                    321: 2.9G    src
                    322: 787M    www
                    323: 1.7G    xenocara
                    324: 6.6G    total
                    325: </pre>
                    326:
                    327: <p>
                    328: The overall repository size currently increases at a rate
                    329: of about <b>400</b>MB per annum. The src repository increases by about
                    330: <b>150</b>MB.
                    331:
1.516     tj        332: <h3 id="CVSROOT">Available Anonymous CVS Servers</h3>
1.1       deraadt   333:
                    334: <ul>
1.523     sthen     335:     <li><strong>CVSROOT=anoncvs@anoncvs.au.openbsd.org:/cvs</strong><br>
1.505     sthen     336: <strong>reposync rsync://anoncvs.au.openbsd.org/cvs/</strong><br>
1.373     dlg       337: Location: Brisbane, Australia.<br>
                    338: Maintained by <a href="mailto:dlg@openbsd.org">David Gwynne</a>.<br>
                    339: Protocols: ssh.<br>
                    340: Updated hourly.<br>
                    341: SSH fingerprints:<br>
1.508     sthen     342: (RSA) <code>SHA256:pPcBY4E33vwreETbz5KJUIzZpWWzaZPhrpnLaFa7WuQ</code><br>
                    343: (ECDSA) <code>SHA256:kg2Zaqpd8ZuluPzlpFS9rEw0KR1UmxD9jSG6+2tr28A</code><br>
1.514     tb        344: (ED25519) <code>SHA256:4CbDtzH/6mqQ/f6KDLz0rdqK2Thk4dQQtHXOxTONEvk</code><br>
1.373     dlg       345: <p>
1.398     brad      346: <li><strong>CVSROOT=anoncvs@anoncvs.comstyle.com:/cvs</strong><br>
1.509     sthen     347: <strong>reposync rsync://anoncvs.comstyle.com/cvs/</strong><br>
1.398     brad      348: Location: Toronto, Canada.<br>
                    349: Maintained by <a href="mailto:brad@comstyle.com">Brad Smith</a>.<br>
                    350: Protocols: ssh, ssh port 2022.<br>
                    351: Updated hourly.<br>
                    352: SSH fingerprints:<br>
1.508     sthen     353: (RSA) <code>SHA256:vYSNKOoCHReBzmdJy3SiULg7YyEZVoib3X3jGJShezA</code><br>
                    354: (ECDSA) <code>SHA256:W2WEQDka4xicJzeQY0Nm0iCv3h2xZLzfp+TT1UvtBTw</code><br>
                    355: (ED25519) <code>SHA256:cqNaOU0KSmJ/S7jrV4UbZ6WkkyXWZ07rhWK8yrRZUV0</code><br>
1.398     brad      356: <p>
1.440     mmcc      357: <li><strong>CVSROOT=anoncvs@obsdacvs.cs.toronto.edu:/cvs</strong><br>
1.506     sthen     358: <strong>reposync rsync://obsdacvs.cs.toronto.edu/obsdcvs/</strong><br>
1.400     nick      359: Location: University of Toronto, Toronto, ON, Canada.<br>
                    360: Maintained by <a href="mailto:nick@holland-consulting.net">Nick Holland</a>.<br>
                    361: Protocols: ssh.<br>
1.501     sthen     362: Updated every 2 hours from main server.<br>
1.400     nick      363: SSH fingerprints:<br>
1.508     sthen     364: (RSA) <code>SHA256:BosSX+gUL/17cUdppQlmXht1S5GGHrHNrL6+U3hyG+o</code><br>
                    365: (ECDSA) <code>SHA256:4I5R4/tGayGG0KDEsj6CY1eCqt2sbcYtA3nqnhUaD04</code><br>
                    366: (ED25519) <code>SHA256:AqblfWV4KT2ptlpV3mq3gb4jNPzgYtjDvlBBcaeohxQ</code><br>
1.374     sthen     367: <p>
1.328     sthen     368: <li><strong>CVSROOT=anoncvs@anoncvs.fr.openbsd.org:/cvs</strong><br>
1.497     sthen     369: <strong>reposync rsync://anoncvs.fr.openbsd.org/openbsd-cvs/</strong><br>
1.328     sthen     370: Location: Paris, France.<br>
1.422     ajacouto  371: Maintained by <a href="mailto:openbsd-mirror@bsdfrog.org">Landry Breuil, Antoine Jacoutot</a>.<br>
1.328     sthen     372: Protocols: ssh.<br>
1.501     sthen     373: Updated every 2 hours from main server.<br>
1.328     sthen     374: SSH fingerprints:<br>
1.508     sthen     375: (RSA) <code>SHA256:d3o82eY/kIfUfmhVpwFu7Do1I7+Wol/tvWmm6Ye9HZ4</code><br>
                    376: (ECDSA) <code>SHA256:WXN4m8NHd4vcTqxmzLMMVenSh6gp8060nv39JIiCSss</code><br>
                    377: (ED25519) <code>SHA256:STeC5WGChnZjIi5Rb+XTAQSbKXQJ+B9wxhaacYNff7k</code><br>
1.381     sthen     378: <p>
1.246     steven    379: <li><strong>CVSROOT=anoncvs@mirror.osn.de:/cvs</strong><br>
1.503     sthen     380: <strong>reposync -p rsync://mirror.osn.de/openbsd-all/</strong><br>
1.249     nick      381: Location: N&uuml;rnberg, Germany.<br>
                    382: Maintained by <a href="mailto:aw@osn.de">Armin Wolfermann</a>.<br>
                    383: Protocols: ssh.<br>
1.307     sthen     384: Updated every 3 hours.<br>
1.215     david     385: SSH fingerprints:<br>
1.508     sthen     386: (RSA) <code>SHA256:fQGY+UhLdbB3oDI4frFtSKF2BjQIkSY0lnSA6lVv8+o</code><br>
                    387: (ECDSA) <code>SHA256:plj+1CPTaKi0AIId/aDMCGgZZnkxc1ow+ffBNMvYW4A</code><br>
                    388: (ED25519) <code>SHA256:np+DK8xlo9A4YnYXO/22GBV8iyuL13r3g5I0/N1Mf8g</code><br>
1.246     steven    389: <p>
1.406     florian   390: <li><strong>CVSROOT=anoncvs@ftp.hostserver.de:/cvs</strong><br>
1.503     sthen     391: <strong>reposync rsync://ftp.hostserver.de/cvs/</strong><br>
1.406     florian   392: Location: Frankfurt, Germany.<br>
1.502     benno     393: Maintained by <a href="mailto:mirror@hostserver.de">Sebastian Benoit, Florian Obser</a>.<br>
1.406     florian   394: Protocols: ssh.<br>
1.501     sthen     395: Updated hourly from main server.<br>
1.406     florian   396: SSH fingerprints:<br>
1.508     sthen     397: (RSA) <code>SHA256:XrjDaKqJ6J02iSQ/eoiqII0LxJX9D/41eeC6pSQAJXs</code><br>
                    398: (ECDSA) <code>SHA256:v6G11hMFfS2+zPh44hhZcpUqDEppyvGQe0vzmrtIHA8</code><br>
                    399: (ED25519) <code>SHA256:KeG1InAfAnQKqpCewmXw/Egb+4UZZuIMGdlYVG+uxNg</code><br>
1.406     florian   400: <p>
1.246     steven    401: <li><strong>CVSROOT=anoncvs@anoncvs.jp.openbsd.org:/cvs</strong><br>
1.504     benno     402: <strong>reposync rsync://anoncvs.jp.openbsd.org/cvs/</strong><br>
1.249     nick      403: Host also known as <strong>kankoromochi.econ.nagasaki-u.ac.jp</strong>.<br>
                    404: Location: Nagasaki University, Faculty of Economics, Nagasaki, Japan.<br>
1.410     sthen     405: Maintained by <a href="mailto:sigh@nagasaki-u.ac.jp">SUZUKI Hitoshi</a>.<br>
1.505     sthen     406: Protocols: ssh.<br>
1.504     benno     407: Updated every 2 hours.<br>
1.410     sthen     408: SSH fingerprints:<br>
1.508     sthen     409: (RSA) <code>SHA256:3XcKWDBEcB5XE4shCmRfh0LmSOyDcp4vcSQp8NK62Gk</code><br>
                    410: (ECDSA) <code>SHA256:aXpmw11DuXXLm8PsJ37L65jEXbu8JF2cnVfQptSkoyQ</code><br>
                    411: (ED25519) <code>SHA256:vLLJFhJCzzmXd7FwgQ+vJpnAQiDibSS2aZOgeuVZmjQ</code><br>
1.176     miod      412: <p>
1.454     sthen     413: <li><strong>CVSROOT=anoncvs@mirror.litnet.lt:/cvs</strong><br>
                    414: Location: Kaunas, Lithuania.<br>
                    415: Maintained by <a href="mailto:pkugrinas@gmail.com">Patrikas Kugrinas</a>.<br>
                    416: Protocols: ssh.<br>
                    417: Updated every 2 hours from anoncvs.eu.openbsd.org.<br>
                    418: SSH fingerprints:<br>
1.508     sthen     419: (RSA) <code>SHA256:RmbGnT7IGLvVd9tm5mAx7rz6VntYlwqW6qyT2QuritY</code><br>
                    420: (ECDSA) <code>SHA256:hj1btBB8gqLdm3EumX3T3LaUZkY9fm1RFvw9DVS2oi8</code><br>
                    421: (ED25519) <code>SHA256:EnczVm1Q8+lE+Zmue3jAPh/pA6BJhEDwL+HNMfedpXI</code><br>
1.454     sthen     422: <p>
1.328     sthen     423: <li><strong>CVSROOT=anoncvs@anoncvs.eu.openbsd.org:/cvs</strong><br>
1.503     sthen     424: <strong>reposync -p rsync://anoncvs.eu.openbsd.org/OpenBSD-cvs/</strong><br>
1.528   ! sthen     425: Location: Safespring AB, Stockholm, Sweden.<br>
1.477     anton     426: Maintained by <a href="mailto:jj@deadzoft.org">Janne Johansson</a>.<br>
1.328     sthen     427: Protocols: ssh.<br>
1.501     sthen     428: Updated every 2 hours from main server.<br>
1.328     sthen     429: SSH fingerprints:<br>
1.528   ! sthen     430: (RSA) <code>SHA256:QcoosLgIy8UxR6PF82E+0wS+2F0WzSaavJSIUxBL8oE</code><br>
        !           431: (ECDSA) <code>SHA256:OUJAC3qFB0Qs8/Oyw5SaUPr0rRlb6wcR2fR9laKBGRs</code><br>
        !           432: (ED25519) <code>SHA256:ZW5umXyiwexF5Tcz3SXgDIA/+vgPFGZ6EE44WLi+x3U</code><br>
1.446     sthen     433: <p>
1.328     sthen     434: <li><strong>CVSROOT=anoncvs@anoncvs.spacehopper.org:/cvs</strong><br>
1.503     sthen     435: <strong>reposync rsync://anoncvs.spacehopper.org/cvs/</strong><br>
1.482     sthen     436: Location: Plymouth, United Kingdom.<br>
1.328     sthen     437: Maintained by <a href="mailto:sthen@openbsd.org">Stuart Henderson</a>.<br>
1.354     sthen     438: Protocols: ssh, ssh port 2022, ssh port 443.<br>
1.501     sthen     439: Updated hourly from main server.<br>
1.328     sthen     440: SSH fingerprints:<br>
1.508     sthen     441: (RSA) <code>SHA256:orTIOu6IKP7Ndz317tyCaz8LJnJWz4jmzSuG+FK7jwM</code><br>
                    442: (ECDSA) <code>SHA256:p+VCx2KynGtiFFaaiF010SIQu6gJgmJb//yokW2sGBE</code><br>
                    443: (ED25519) <code>SHA256:oaJ7VEyjt2EHMeixzKn9zJGiV5YlWHIUls070tKdBzI</code><br>
1.437     sthen     444: <p>
1.453     millert   445: <li><strong>CVSROOT=anoncvs@anoncvs4.usa.openbsd.org:/cvs</strong><br>
1.503     sthen     446: <strong>reposync rsync://anoncvs4.usa.openbsd.org/cvs/</strong><br>
1.525     millert   447: Host also known as <strong>ftp3.usa.openbsd.org, ftp4.usa.openbsd.org, ftp5.usa.openbsd.org</strong>.<br>
1.453     millert   448: Location: New York Internet, New York, NY, USA.<br>
                    449: Maintained by <a href="mailto:millert@openbsd.org">Todd C. Miller</a>.<br>
                    450: Protocols: ssh, ssh port 2022.<br>
1.501     sthen     451: Updated hourly from main server.<br>
1.453     millert   452: SSH fingerprints:<br>
1.508     sthen     453: (RSA) <code>SHA256:RT7vVXrvmKgZ7VkrVZ0lgugDFCBPVT6iSwMh+m1vZTA</code><br>
                    454: (ECDSA) <code>SHA256:JreaFNTlm2Uhlk3iaMs4Rweq27KPSVYUgj9sZUsOxCc</code><br>
                    455: (ED25519) <code>SHA256:iLsNcXOnluavlGUV+O4JE7TNppEwIMvsjZ7m1VVObiM</code><br>
1.453     millert   456: <p>
1.437     sthen     457: <li><strong>CVSROOT=anoncvs@anoncvs1.usa.openbsd.org:/cvs</strong><br>
1.503     sthen     458: <strong>reposync rsync://anoncvs1.usa.openbsd.org/cvs/</strong><br>
1.525     millert   459: Host also known as <strong>anoncvs.usa.openbsd.org, anoncvs2.usa.openbsd.org, anoncvs3.usa.openbsd.org</strong>.<br>
1.437     sthen     460: Location: Network Media, LLC, Bend, OR, USA.<br>
                    461: Maintained by <a href="mailto:millert@openbsd.org">Todd C. Miller</a>.<br>
                    462: Protocols: ssh, pserver.<br>
1.501     sthen     463: Updated hourly from main server.<br>
1.437     sthen     464: SSH fingerprints:<br>
1.508     sthen     465: (RSA) <code>SHA256:PFKE28DFbJLmqoLkq9xfBuiYl9GN2LABsvUpzNk+LlE</code><br>
                    466: (ECDSA) <code>SHA256:Ofstc7xq/W+73vBMUpb3A4ZqLNhKI3u2FdzbOkJpOHI</code><br>
                    467: (ED25519) <code>SHA256:IYHq/zKqYnd2wy71Br6X8Q1Jk0XGjOJA4PU6CAr6pDo</code><br>
1.408     sthen     468: <p>
1.246     steven    469:
1.73      deraadt   470: </ul>
1.84      beck      471:
1.493     bentley   472: <p>
1.461     tb        473: If your server is listed on here with inaccurate or unknown information, please
1.493     bentley   474: contact <a href="mailto:beck@openbsd.org"><code>beck@openbsd.org</code></a>.
1.104     ericj     475:
1.80      beck      476: <p>
1.497     sthen     477: You may want to use
1.473     tb        478: <a href="https://man.openbsd.org/traceroute">traceroute(8)</a>
1.249     nick      479: to find out which server is nearest you.
                    480: Problems with a server should be reported to the <b>maintainer</b> of the
                    481: server in question.
1.104     ericj     482:
1.159     jcs       483: <p>
1.249     nick      484: If local policy prevents outgoing connections to ssh's default port of 22,
1.370     rpe       485: some servers permit connections on an alternative port (typically 2022).
                    486: These are noted in the list above.
1.493     bentley   487: To use a different port, reconfigure your ssh client by adding a <code>Host</code>
                    488: entry to <code>$HOME/.ssh/config</code>, e.g.:
1.485     tj        489: <pre class="cmdbox">
1.461     tb        490: Host anoncvs.ca.openbsd.org
                    491:     Port 2022
1.485     tj        492: </pre>
1.1       deraadt   493:
1.516     tj        494: <h3 id="MIRROR">Setting up an AnonCVS Mirror</h3>
1.105     ericj     495:
1.493     bentley   496: <p>
1.518     tj        497: <!-- XXXrelease - needs an occasional update -->
1.516     tj        498: AnonCVS mirrors currently require about 6GB of disk (and it will grow!), and use
1.461     tb        499: up to 64MB of swap per anoncvs user (assuming the user does a large operation;
1.516     tj        500: while smaller operations use fewer resources, AnonCVS still makes much more of
1.461     tb        501: an impact than ftp).
1.516     tj        502: Such AnonCVS machines should have excellent network connectivity for the area
1.461     tb        503: they are expected to serve.
1.516     tj        504: A <a href="anoncvs.shar">document</a> which describes the setup of AnonCVS
1.461     tb        505: servers is available.
                    506:
1.516     tj        507: <h3 id="NOTES">Final Notes</h3>
1.461     tb        508:
1.493     bentley   509: <p>
1.461     tb        510: After upgrading your source tree, you should read the comments at the top of
1.493     bentley   511: <code>/usr/src/Makefile</code> before attempting a build.
                    512: Also, you should build a new kernel <strong>before</strong> doing a <kbd>make build</kbd>
1.461     tb        513: if possible.
1.493     bentley   514: In some cases it may be necessary to rebuild and install the <code>config</code>
1.461     tb        515: utility before you can build the kernel.
1.493     bentley   516: If <kbd>config GENERIC</kbd> fails this is probably the case.
1.461     tb        517:
1.249     nick      518: <p>
                    519: It is important to note that upgrading from a release to the current tree
1.516     tj        520: by rebuilding the sources is not supported.
1.461     tb        521: Therefore, it is suggested that you first install the latest snapshot before
                    522: attempting a tree build from source.