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

Annotation of www/anoncvs.html, Revision 1.531

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.531   ! 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.531   ! sthen     127: group; replace <code>anoncvs.example.org</code> with a mirror from the
        !           128: <a href="#CVSROOT">list below</a>.
1.100     ericj     129:
1.370     rpe       130: <p>
1.480     tj        131: If you are following -current:
1.457     tj        132:
1.485     tj        133: <pre class="cmdbox">
1.457     tj        134: $ <b>cd /usr</b>
1.531   ! sthen     135: $ <b>cvs -qd anoncvs@anoncvs.example.org:/cvs checkout -P src</b>
1.485     tj        136: </pre>
1.370     rpe       137:
1.493     bentley   138: <p>
1.529     deraadt   139: If you are following the 7.4 -stable branch:
1.99      ericj     140:
1.485     tj        141: <pre class="cmdbox">
1.457     tj        142: $ <b>cd /usr</b>
1.531   ! sthen     143: $ <b>cvs -qd anoncvs@anoncvs.example.org:/cvs checkout -rOPENBSD_7_4 -P src</b>
1.489     tj        144: </pre>
1.394     sthen     145: <!-- DO NOT EDIT ANONCVS.HTML MANUALLY - IT IS GENERATED FROM TEMPLATES! -->
1.370     rpe       146:
1.493     bentley   147: <p>
1.394     sthen     148: Anonymous CVS uses passwordless SSH as a transport.
1.516     tj        149: If this is the first time you have connected to a server,
1.394     sthen     150: you will be asked to confirm the SSH fingerprint to ensure that you
                    151: are connecting to the expected server:
                    152:
1.485     tj        153: <pre class="cmdbox">
1.476     anton     154: $ <b>cvs -d anoncvs@anoncvs.spacehopper.org:/cvs checkout -P src</b>
1.457     tj        155: The authenticity of host 'anoncvs.spacehopper.org (2001:67c:15f4:a423::28)' can't be established.
                    156: ED25519 key fingerprint is SHA256:oaJ7VEyjt2EHMeixzKn9zJGiV5YlWHIUls070tKdBzI.
                    157: Are you sure you want to continue connecting (yes/no)?
1.485     tj        158: </pre>
1.394     sthen     159:
1.493     bentley   160: <p>
1.394     sthen     161: In most cases, the list below includes the fingerprints for the server,
                    162: so you can compare it against the displayed fingerprint as additional
                    163: verification that you are connecting to the correct server.
                    164: Confirm this, and the fingerprint will then be saved as usual.
                    165:
1.485     tj        166: <pre class="cmdbox">
1.457     tj        167: Are you sure you want to continue connecting (yes/no)? <b>yes</b>
1.464     tb        168: Warning: Permanently added 'anoncvs.spacehopper.org' (ED25519) to the list of known hosts.
1.485     tj        169: </pre>
1.457     tj        170:
1.516     tj        171: <h4 id="updating">Updating an Existing Tree</h4>
1.457     tj        172:
1.493     bentley   173: <p>
1.480     tj        174: If you are following -current:
1.457     tj        175:
1.485     tj        176: <pre class="cmdbox">
1.457     tj        177: $ <b>cd /usr/src</b>
1.479     sthen     178: $ <b>cvs -q up -Pd -A</b>
1.485     tj        179: </pre>
1.370     rpe       180:
1.493     bentley   181: <p>
1.529     deraadt   182: If you are following the 7.4 -stable branch:
1.370     rpe       183:
1.485     tj        184: <pre class="cmdbox">
1.457     tj        185: $ <b>cd /usr/src</b>
1.529     deraadt   186: $ <b>cvs -q up -Pd -rOPENBSD_7_4</b>
1.489     tj        187: </pre>
1.370     rpe       188:
1.493     bentley   189: <p>
                    190: Every time you run this, cvs(1) synchronizes your <code>/usr/src</code> tree.
1.467     tb        191: It does not destroy any of your local changes; rather it attempts to merge
                    192: changes in.
1.370     rpe       193:
1.516     tj        194: <h4>Changing the Server</h4>
1.464     tb        195:
1.493     bentley   196: <p>
1.370     rpe       197: If you are updating a source tree that you initially fetched
1.457     tj        198: from a different server, or from a tar file, you <b>must</b>
1.394     sthen     199: add the <em>-d [cvsroot]</em> option to cvs.
1.457     tj        200:
1.485     tj        201: <pre class="cmdbox">
1.457     tj        202: $ <b>cd /usr/src</b>
1.531   ! sthen     203: $ <b>cvs -d anoncvs@anoncvs.example.org:/cvs -q up -Pd</b>
1.485     tj        204: </pre>
1.1       deraadt   205:
1.516     tj        206: <h4>Getting the ports and xenocara Trees</h4>
1.464     tb        207:
1.493     bentley   208: <p>
                    209: Make sure your user is member of the <code>wsrc</code> group and that
                    210: <code>/usr/ports</code> is group writable by <code>wsrc</code>.
                    211: Replace <kbd>ports</kbd> with <kbd>xenocara</kbd> throughout to get or update a
1.464     tb        212: xenocara tree.
1.457     tj        213:
1.370     rpe       214: <ul><li>
1.457     tj        215:
                    216: <p>
1.480     tj        217: If you are following -current:
1.457     tj        218:
1.485     tj        219: <pre class="cmdbox">
1.457     tj        220: $ <b>cd /usr</b>
1.531   ! sthen     221: $ <b>cvs -qd anoncvs@anoncvs.example.org:/cvs checkout -P ports</b>
1.485     tj        222: </pre>
1.457     tj        223:
1.493     bentley   224: <p>
1.529     deraadt   225: If you are following the 7.4 -stable branch:
1.457     tj        226:
1.485     tj        227: <pre class="cmdbox">
1.457     tj        228: $ <b>cd /usr</b>
1.531   ! sthen     229: $ <b>cvs -qd anoncvs@anoncvs.example.org:/cvs checkout -rOPENBSD_7_4 -P ports</b>
1.489     tj        230: </pre>
1.457     tj        231:
                    232: <li> Any time afterwards, to update this tree:
                    233:
                    234: <p>
1.480     tj        235: If you are following -current:
1.457     tj        236:
1.485     tj        237: <pre class="cmdbox">
1.457     tj        238: $ <b>cd /usr/ports</b>
1.479     sthen     239: $ <b>cvs -q up -Pd -A</b>
1.485     tj        240: </pre>
1.457     tj        241:
1.493     bentley   242: <p>
1.529     deraadt   243: If you are following the 7.4 -stable branch:
1.457     tj        244:
1.485     tj        245: <pre class="cmdbox">
1.457     tj        246: $ <b>cd /usr/ports</b>
1.529     deraadt   247: $ <b>cvs -q up -Pd -rOPENBSD_7_4</b>
1.489     tj        248: </pre>
1.457     tj        249:
1.370     rpe       250: </ul>
                    251:
1.519     tj        252: <h4>Creating a Diff</h4>
1.464     tb        253:
1.493     bentley   254: <p>
                    255: To make a diff of a locally patched module (here <code>cd.c</code>) to include with
1.370     rpe       256: a bug report:
                    257:
1.485     tj        258: <pre class="cmdbox">
1.484     tb        259: $ <b>cd /usr/src</b>
                    260: $ <b>cvs diff -u sys/scsi/cd.c &gt; /tmp/patch</b>
1.485     tj        261: </pre>
1.370     rpe       262:
1.516     tj        263: <h3 id="EXAMPLE">Example Usage</h3>
1.457     tj        264:
1.485     tj        265: <pre class="cmdbox">
1.457     tj        266: $ <b>cd /tmp</b>
1.531   ! sthen     267: $ <b>cvs -d anoncvs@anoncvs.example.org:/cvs checkout -P src/sys/arch/sparc</b>
1.457     tj        268: [copies the files from the repository to your machine]
                    269: $ <b>cd src/sys/arch/sparc</b>
                    270: $ <b>cvs log locore.s</b>
                    271: [shows the commit log for the chosen file]
                    272: $ <b>cvs diff -bc -r1.1 -r1.5 locore.s</b>
                    273: [shows the changes between revisions 1.1 and rev 1.5]
1.485     tj        274: </pre>
1.100     ericj     275:
1.497     sthen     276: <h3 id="rsync">Mirroring the Repository</h3>
                    277:
                    278: <p>
                    279: As noted in the list below, some repository mirrors also allow fetching
                    280: the entire repository via rsync.
1.511     bentley   281: Please use the <code>reposync</code> wrapper script which checks for updates to
1.497     sthen     282: CVSROOT/ChangeLog and avoids a full directory scan in some cases where no update
                    283: was detected.
1.516     tj        284: It also handles SSH port forwarding for mirrors where this is available,
1.497     sthen     285: allowing to connect to an "rsync --daemon" server over an
                    286: authenticated and encrypted channel.
                    287:
                    288: <p>
1.511     bentley   289: Install <code>reposync</code> from packages, create a user and directory to
1.497     sthen     290: hold the repository, and a directory for reposync's own use:
                    291:
                    292: <pre class="cmdbox">
                    293: # <b>pkg_add reposync</b>
                    294: # <b>useradd cvs</b>
                    295: # <b>install -d -o cvs /home/cvs /var/db/reposync</b>
                    296: </pre>
                    297:
                    298: <p>
1.503     sthen     299: Now the following command might be used to mirror or update the repository.
                    300: If your chosen mirror does not support SSH port-forwarding, either switch to
                    301: a better mirror, or change to "reposync -p".
1.497     sthen     302:
                    303: <pre class="cmdbox">
1.503     sthen     304: # <b>su -m cvs -c "reposync rsync://mirror.example.org/cvs /home/cvs"</b>
1.497     sthen     305: </pre>
                    306:
                    307: <p>
                    308: After mirroring, you can use the local directory as your cvsroot, for example:
                    309:
                    310: <pre class="cmdbox">
                    311: $ <b>cd /usr/src</b>
                    312: $ <b>cvs -d /home/cvs -q up -Pd</b>
                    313: </pre>
                    314:
1.518     tj        315: <!-- XXXrelease - needs an occasional update -->
1.497     sthen     316: As of November 2019, repository sizes are as follows:
                    317:
                    318: <pre class="cmdbox">
                    319: $ <b>du -shc *</b>
                    320: 175M    CVSROOT
                    321: 1.1G    ports
                    322: 2.9G    src
                    323: 787M    www
                    324: 1.7G    xenocara
                    325: 6.6G    total
                    326: </pre>
                    327:
                    328: <p>
                    329: The overall repository size currently increases at a rate
                    330: of about <b>400</b>MB per annum. The src repository increases by about
                    331: <b>150</b>MB.
                    332:
1.516     tj        333: <h3 id="CVSROOT">Available Anonymous CVS Servers</h3>
1.1       deraadt   334:
                    335: <ul>
1.523     sthen     336:     <li><strong>CVSROOT=anoncvs@anoncvs.au.openbsd.org:/cvs</strong><br>
1.505     sthen     337: <strong>reposync rsync://anoncvs.au.openbsd.org/cvs/</strong><br>
1.373     dlg       338: Location: Brisbane, Australia.<br>
                    339: Maintained by <a href="mailto:dlg@openbsd.org">David Gwynne</a>.<br>
                    340: Protocols: ssh.<br>
                    341: Updated hourly.<br>
                    342: SSH fingerprints:<br>
1.508     sthen     343: (RSA) <code>SHA256:pPcBY4E33vwreETbz5KJUIzZpWWzaZPhrpnLaFa7WuQ</code><br>
                    344: (ECDSA) <code>SHA256:kg2Zaqpd8ZuluPzlpFS9rEw0KR1UmxD9jSG6+2tr28A</code><br>
1.514     tb        345: (ED25519) <code>SHA256:4CbDtzH/6mqQ/f6KDLz0rdqK2Thk4dQQtHXOxTONEvk</code><br>
1.373     dlg       346: <p>
1.398     brad      347: <li><strong>CVSROOT=anoncvs@anoncvs.comstyle.com:/cvs</strong><br>
1.509     sthen     348: <strong>reposync rsync://anoncvs.comstyle.com/cvs/</strong><br>
1.398     brad      349: Location: Toronto, Canada.<br>
                    350: Maintained by <a href="mailto:brad@comstyle.com">Brad Smith</a>.<br>
                    351: Protocols: ssh, ssh port 2022.<br>
                    352: Updated hourly.<br>
                    353: SSH fingerprints:<br>
1.508     sthen     354: (RSA) <code>SHA256:vYSNKOoCHReBzmdJy3SiULg7YyEZVoib3X3jGJShezA</code><br>
                    355: (ECDSA) <code>SHA256:W2WEQDka4xicJzeQY0Nm0iCv3h2xZLzfp+TT1UvtBTw</code><br>
                    356: (ED25519) <code>SHA256:cqNaOU0KSmJ/S7jrV4UbZ6WkkyXWZ07rhWK8yrRZUV0</code><br>
1.398     brad      357: <p>
1.440     mmcc      358: <li><strong>CVSROOT=anoncvs@obsdacvs.cs.toronto.edu:/cvs</strong><br>
1.506     sthen     359: <strong>reposync rsync://obsdacvs.cs.toronto.edu/obsdcvs/</strong><br>
1.400     nick      360: Location: University of Toronto, Toronto, ON, Canada.<br>
                    361: Maintained by <a href="mailto:nick@holland-consulting.net">Nick Holland</a>.<br>
                    362: Protocols: ssh.<br>
1.501     sthen     363: Updated every 2 hours from main server.<br>
1.400     nick      364: SSH fingerprints:<br>
1.508     sthen     365: (RSA) <code>SHA256:BosSX+gUL/17cUdppQlmXht1S5GGHrHNrL6+U3hyG+o</code><br>
                    366: (ECDSA) <code>SHA256:4I5R4/tGayGG0KDEsj6CY1eCqt2sbcYtA3nqnhUaD04</code><br>
                    367: (ED25519) <code>SHA256:AqblfWV4KT2ptlpV3mq3gb4jNPzgYtjDvlBBcaeohxQ</code><br>
1.374     sthen     368: <p>
1.328     sthen     369: <li><strong>CVSROOT=anoncvs@anoncvs.fr.openbsd.org:/cvs</strong><br>
1.497     sthen     370: <strong>reposync rsync://anoncvs.fr.openbsd.org/openbsd-cvs/</strong><br>
1.328     sthen     371: Location: Paris, France.<br>
1.422     ajacouto  372: Maintained by <a href="mailto:openbsd-mirror@bsdfrog.org">Landry Breuil, Antoine Jacoutot</a>.<br>
1.328     sthen     373: Protocols: ssh.<br>
1.501     sthen     374: Updated every 2 hours from main server.<br>
1.328     sthen     375: SSH fingerprints:<br>
1.508     sthen     376: (RSA) <code>SHA256:d3o82eY/kIfUfmhVpwFu7Do1I7+Wol/tvWmm6Ye9HZ4</code><br>
                    377: (ECDSA) <code>SHA256:WXN4m8NHd4vcTqxmzLMMVenSh6gp8060nv39JIiCSss</code><br>
                    378: (ED25519) <code>SHA256:STeC5WGChnZjIi5Rb+XTAQSbKXQJ+B9wxhaacYNff7k</code><br>
1.381     sthen     379: <p>
1.246     steven    380: <li><strong>CVSROOT=anoncvs@mirror.osn.de:/cvs</strong><br>
1.503     sthen     381: <strong>reposync -p rsync://mirror.osn.de/openbsd-all/</strong><br>
1.249     nick      382: Location: N&uuml;rnberg, Germany.<br>
                    383: Maintained by <a href="mailto:aw@osn.de">Armin Wolfermann</a>.<br>
                    384: Protocols: ssh.<br>
1.307     sthen     385: Updated every 3 hours.<br>
1.215     david     386: SSH fingerprints:<br>
1.508     sthen     387: (RSA) <code>SHA256:fQGY+UhLdbB3oDI4frFtSKF2BjQIkSY0lnSA6lVv8+o</code><br>
                    388: (ECDSA) <code>SHA256:plj+1CPTaKi0AIId/aDMCGgZZnkxc1ow+ffBNMvYW4A</code><br>
                    389: (ED25519) <code>SHA256:np+DK8xlo9A4YnYXO/22GBV8iyuL13r3g5I0/N1Mf8g</code><br>
1.246     steven    390: <p>
1.406     florian   391: <li><strong>CVSROOT=anoncvs@ftp.hostserver.de:/cvs</strong><br>
1.503     sthen     392: <strong>reposync rsync://ftp.hostserver.de/cvs/</strong><br>
1.406     florian   393: Location: Frankfurt, Germany.<br>
1.502     benno     394: Maintained by <a href="mailto:mirror@hostserver.de">Sebastian Benoit, Florian Obser</a>.<br>
1.406     florian   395: Protocols: ssh.<br>
1.501     sthen     396: Updated hourly from main server.<br>
1.406     florian   397: SSH fingerprints:<br>
1.508     sthen     398: (RSA) <code>SHA256:XrjDaKqJ6J02iSQ/eoiqII0LxJX9D/41eeC6pSQAJXs</code><br>
                    399: (ECDSA) <code>SHA256:v6G11hMFfS2+zPh44hhZcpUqDEppyvGQe0vzmrtIHA8</code><br>
                    400: (ED25519) <code>SHA256:KeG1InAfAnQKqpCewmXw/Egb+4UZZuIMGdlYVG+uxNg</code><br>
1.406     florian   401: <p>
1.246     steven    402: <li><strong>CVSROOT=anoncvs@anoncvs.jp.openbsd.org:/cvs</strong><br>
1.504     benno     403: <strong>reposync rsync://anoncvs.jp.openbsd.org/cvs/</strong><br>
1.249     nick      404: Host also known as <strong>kankoromochi.econ.nagasaki-u.ac.jp</strong>.<br>
                    405: Location: Nagasaki University, Faculty of Economics, Nagasaki, Japan.<br>
1.410     sthen     406: Maintained by <a href="mailto:sigh@nagasaki-u.ac.jp">SUZUKI Hitoshi</a>.<br>
1.505     sthen     407: Protocols: ssh.<br>
1.504     benno     408: Updated every 2 hours.<br>
1.410     sthen     409: SSH fingerprints:<br>
1.508     sthen     410: (RSA) <code>SHA256:3XcKWDBEcB5XE4shCmRfh0LmSOyDcp4vcSQp8NK62Gk</code><br>
                    411: (ECDSA) <code>SHA256:aXpmw11DuXXLm8PsJ37L65jEXbu8JF2cnVfQptSkoyQ</code><br>
                    412: (ED25519) <code>SHA256:vLLJFhJCzzmXd7FwgQ+vJpnAQiDibSS2aZOgeuVZmjQ</code><br>
1.176     miod      413: <p>
1.454     sthen     414: <li><strong>CVSROOT=anoncvs@mirror.litnet.lt:/cvs</strong><br>
                    415: Location: Kaunas, Lithuania.<br>
                    416: Maintained by <a href="mailto:pkugrinas@gmail.com">Patrikas Kugrinas</a>.<br>
                    417: Protocols: ssh.<br>
                    418: Updated every 2 hours from anoncvs.eu.openbsd.org.<br>
                    419: SSH fingerprints:<br>
1.508     sthen     420: (RSA) <code>SHA256:RmbGnT7IGLvVd9tm5mAx7rz6VntYlwqW6qyT2QuritY</code><br>
                    421: (ECDSA) <code>SHA256:hj1btBB8gqLdm3EumX3T3LaUZkY9fm1RFvw9DVS2oi8</code><br>
                    422: (ED25519) <code>SHA256:EnczVm1Q8+lE+Zmue3jAPh/pA6BJhEDwL+HNMfedpXI</code><br>
1.454     sthen     423: <p>
1.328     sthen     424: <li><strong>CVSROOT=anoncvs@anoncvs.eu.openbsd.org:/cvs</strong><br>
1.503     sthen     425: <strong>reposync -p rsync://anoncvs.eu.openbsd.org/OpenBSD-cvs/</strong><br>
1.528     sthen     426: Location: Safespring AB, Stockholm, Sweden.<br>
1.477     anton     427: Maintained by <a href="mailto:jj@deadzoft.org">Janne Johansson</a>.<br>
1.328     sthen     428: Protocols: ssh.<br>
1.501     sthen     429: Updated every 2 hours from main server.<br>
1.328     sthen     430: SSH fingerprints:<br>
1.528     sthen     431: (RSA) <code>SHA256:QcoosLgIy8UxR6PF82E+0wS+2F0WzSaavJSIUxBL8oE</code><br>
                    432: (ECDSA) <code>SHA256:OUJAC3qFB0Qs8/Oyw5SaUPr0rRlb6wcR2fR9laKBGRs</code><br>
                    433: (ED25519) <code>SHA256:ZW5umXyiwexF5Tcz3SXgDIA/+vgPFGZ6EE44WLi+x3U</code><br>
1.446     sthen     434: <p>
1.328     sthen     435: <li><strong>CVSROOT=anoncvs@anoncvs.spacehopper.org:/cvs</strong><br>
1.503     sthen     436: <strong>reposync rsync://anoncvs.spacehopper.org/cvs/</strong><br>
1.482     sthen     437: Location: Plymouth, United Kingdom.<br>
1.328     sthen     438: Maintained by <a href="mailto:sthen@openbsd.org">Stuart Henderson</a>.<br>
1.354     sthen     439: Protocols: ssh, ssh port 2022, ssh port 443.<br>
1.501     sthen     440: Updated hourly from main server.<br>
1.328     sthen     441: SSH fingerprints:<br>
1.508     sthen     442: (RSA) <code>SHA256:orTIOu6IKP7Ndz317tyCaz8LJnJWz4jmzSuG+FK7jwM</code><br>
                    443: (ECDSA) <code>SHA256:p+VCx2KynGtiFFaaiF010SIQu6gJgmJb//yokW2sGBE</code><br>
                    444: (ED25519) <code>SHA256:oaJ7VEyjt2EHMeixzKn9zJGiV5YlWHIUls070tKdBzI</code><br>
1.437     sthen     445: <p>
1.453     millert   446: <li><strong>CVSROOT=anoncvs@anoncvs4.usa.openbsd.org:/cvs</strong><br>
1.503     sthen     447: <strong>reposync rsync://anoncvs4.usa.openbsd.org/cvs/</strong><br>
1.525     millert   448: Host also known as <strong>ftp3.usa.openbsd.org, ftp4.usa.openbsd.org, ftp5.usa.openbsd.org</strong>.<br>
1.453     millert   449: Location: New York Internet, New York, NY, USA.<br>
                    450: Maintained by <a href="mailto:millert@openbsd.org">Todd C. Miller</a>.<br>
                    451: Protocols: ssh, ssh port 2022.<br>
1.501     sthen     452: Updated hourly from main server.<br>
1.453     millert   453: SSH fingerprints:<br>
1.508     sthen     454: (RSA) <code>SHA256:RT7vVXrvmKgZ7VkrVZ0lgugDFCBPVT6iSwMh+m1vZTA</code><br>
                    455: (ECDSA) <code>SHA256:JreaFNTlm2Uhlk3iaMs4Rweq27KPSVYUgj9sZUsOxCc</code><br>
                    456: (ED25519) <code>SHA256:iLsNcXOnluavlGUV+O4JE7TNppEwIMvsjZ7m1VVObiM</code><br>
1.453     millert   457: <p>
1.437     sthen     458: <li><strong>CVSROOT=anoncvs@anoncvs1.usa.openbsd.org:/cvs</strong><br>
1.503     sthen     459: <strong>reposync rsync://anoncvs1.usa.openbsd.org/cvs/</strong><br>
1.525     millert   460: Host also known as <strong>anoncvs.usa.openbsd.org, anoncvs2.usa.openbsd.org, anoncvs3.usa.openbsd.org</strong>.<br>
1.437     sthen     461: Location: Network Media, LLC, Bend, OR, USA.<br>
                    462: Maintained by <a href="mailto:millert@openbsd.org">Todd C. Miller</a>.<br>
                    463: Protocols: ssh, pserver.<br>
1.501     sthen     464: Updated hourly from main server.<br>
1.437     sthen     465: SSH fingerprints:<br>
1.508     sthen     466: (RSA) <code>SHA256:PFKE28DFbJLmqoLkq9xfBuiYl9GN2LABsvUpzNk+LlE</code><br>
                    467: (ECDSA) <code>SHA256:Ofstc7xq/W+73vBMUpb3A4ZqLNhKI3u2FdzbOkJpOHI</code><br>
                    468: (ED25519) <code>SHA256:IYHq/zKqYnd2wy71Br6X8Q1Jk0XGjOJA4PU6CAr6pDo</code><br>
1.408     sthen     469: <p>
1.246     steven    470:
1.73      deraadt   471: </ul>
1.84      beck      472:
1.493     bentley   473: <p>
1.461     tb        474: If your server is listed on here with inaccurate or unknown information, please
1.493     bentley   475: contact <a href="mailto:beck@openbsd.org"><code>beck@openbsd.org</code></a>.
1.104     ericj     476:
1.80      beck      477: <p>
1.497     sthen     478: You may want to use
1.473     tb        479: <a href="https://man.openbsd.org/traceroute">traceroute(8)</a>
1.249     nick      480: to find out which server is nearest you.
                    481: Problems with a server should be reported to the <b>maintainer</b> of the
                    482: server in question.
1.104     ericj     483:
1.159     jcs       484: <p>
1.249     nick      485: If local policy prevents outgoing connections to ssh's default port of 22,
1.370     rpe       486: some servers permit connections on an alternative port (typically 2022).
                    487: These are noted in the list above.
1.493     bentley   488: To use a different port, reconfigure your ssh client by adding a <code>Host</code>
                    489: entry to <code>$HOME/.ssh/config</code>, e.g.:
1.485     tj        490: <pre class="cmdbox">
1.531   ! sthen     491: Host anoncvs.example.org
1.461     tb        492:     Port 2022
1.485     tj        493: </pre>
1.1       deraadt   494:
1.516     tj        495: <h3 id="MIRROR">Setting up an AnonCVS Mirror</h3>
1.105     ericj     496:
1.493     bentley   497: <p>
1.518     tj        498: <!-- XXXrelease - needs an occasional update -->
1.530     benno     499: AnonCVS mirrors currently require about 9GB of disk (and it will grow!), and use
1.461     tb        500: up to 64MB of swap per anoncvs user (assuming the user does a large operation;
1.516     tj        501: while smaller operations use fewer resources, AnonCVS still makes much more of
1.461     tb        502: an impact than ftp).
1.516     tj        503: Such AnonCVS machines should have excellent network connectivity for the area
1.461     tb        504: they are expected to serve.
1.516     tj        505: A <a href="anoncvs.shar">document</a> which describes the setup of AnonCVS
1.461     tb        506: servers is available.
                    507:
1.516     tj        508: <h3 id="NOTES">Final Notes</h3>
1.461     tb        509:
1.493     bentley   510: <p>
1.461     tb        511: After upgrading your source tree, you should read the comments at the top of
1.493     bentley   512: <code>/usr/src/Makefile</code> before attempting a build.
                    513: Also, you should build a new kernel <strong>before</strong> doing a <kbd>make build</kbd>
1.461     tb        514: if possible.
1.493     bentley   515: In some cases it may be necessary to rebuild and install the <code>config</code>
1.461     tb        516: utility before you can build the kernel.
1.493     bentley   517: If <kbd>config GENERIC</kbd> fails this is probably the case.
1.461     tb        518:
1.249     nick      519: <p>
                    520: It is important to note that upgrading from a release to the current tree
1.516     tj        521: by rebuilding the sources is not supported.
1.461     tb        522: Therefore, it is suggested that you first install the latest snapshot before
                    523: attempting a tree build from source.