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

Annotation of www/anoncvs.html, Revision 1.509

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
                     42:   <li><b>ports</b> - the <a href="faq/ports">ports tree</a>
                     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.468     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
                     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.464     tb         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.466     tb        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.496     tj        138: If you are following the 6.6 -stable branch:
1.99      ericj     139:
1.485     tj        140: <pre class="cmdbox">
1.457     tj        141: $ <b>cd /usr</b>
1.496     tj        142: $ <b>cvs -qd anoncvs@anoncvs.ca.openbsd.org:/cvs checkout -rOPENBSD_6_6 -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.
                    148: If this is the first time you have connected to an anoncvs server,
                    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.466     tb        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.496     tj        181: If you are following the 6.6 -stable branch:
1.370     rpe       182:
1.485     tj        183: <pre class="cmdbox">
1.457     tj        184: $ <b>cd /usr/src</b>
1.496     tj        185: $ <b>cvs -q up -Pd -rOPENBSD_6_6</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.464     tb        193: <h4>Changing the server</h4>
                    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.464     tb        205: <h4>Getting the ports and xenocara trees</h4>
                    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.496     tj        224: If you are following the 6.6 -stable branch:
1.457     tj        225:
1.485     tj        226: <pre class="cmdbox">
1.457     tj        227: $ <b>cd /usr</b>
1.496     tj        228: $ <b>cvs -qd anoncvs@anoncvs.ca.openbsd.org:/cvs checkout -rOPENBSD_6_6 -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.496     tj        242: If you are following the 6.6 -stable branch:
1.457     tj        243:
1.485     tj        244: <pre class="cmdbox">
1.457     tj        245: $ <b>cd /usr/ports</b>
1.496     tj        246: $ <b>cvs -q up -Pd -rOPENBSD_6_6</b>
1.489     tj        247: </pre>
1.457     tj        248:
1.370     rpe       249: </ul>
                    250:
1.464     tb        251: <h4>Creating a diff</h4>
                    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.459     tb        262: <h3 id="EXAMPLE">Example usage for cvs(1)</h3>
1.100     ericj     263:
1.493     bentley   264: <p>
1.370     rpe       265: A sample use of an anoncvs server would be:
1.457     tj        266:
1.485     tj        267: <pre class="cmdbox">
1.457     tj        268: $ <b>cd /tmp</b>
1.476     anton     269: $ <b>cvs -d anoncvs@anoncvs.ca.openbsd.org:/cvs checkout -P src/sys/arch/sparc</b>
1.457     tj        270: [copies the files from the repository to your machine]
                    271: $ <b>cd src/sys/arch/sparc</b>
                    272: $ <b>cvs log locore.s</b>
                    273: [shows the commit log for the chosen file]
                    274: $ <b>cvs diff -bc -r1.1 -r1.5 locore.s</b>
                    275: [shows the changes between revisions 1.1 and rev 1.5]
1.485     tj        276: </pre>
1.100     ericj     277:
1.497     sthen     278: <h3 id="rsync">Mirroring the Repository</h3>
                    279:
                    280: <p>
                    281: As noted in the list below, some repository mirrors also allow fetching
                    282: the entire repository via rsync.
                    283: Please use the <tt>reposync</tt> wrapper script which checks for updates to
                    284: CVSROOT/ChangeLog and avoids a full directory scan in some cases where no update
                    285: was detected.
                    286: It also handles SSH port-forwarding for mirrors where this is available,
                    287: allowing to connect to an "rsync --daemon" server over an
                    288: authenticated and encrypted channel.
                    289:
                    290: <p>
                    291: Install <tt>reposync</tt> from packages, create a user and directory to
                    292: hold the repository, and a directory for reposync's own use:
                    293:
                    294: <pre class="cmdbox">
                    295: # <b>pkg_add reposync</b>
                    296: # <b>useradd cvs</b>
                    297: # <b>install -d -o cvs /home/cvs /var/db/reposync</b>
                    298: </pre>
                    299:
                    300: <p>
1.503     sthen     301: Now the following command might be used to mirror or update the repository.
                    302: If your chosen mirror does not support SSH port-forwarding, either switch to
                    303: a better mirror, or change to "reposync -p".
1.497     sthen     304:
                    305: <pre class="cmdbox">
1.503     sthen     306: # <b>su -m cvs -c "reposync rsync://mirror.example.org/cvs /home/cvs"</b>
1.497     sthen     307: </pre>
                    308:
                    309: <p>
                    310: After mirroring, you can use the local directory as your cvsroot, for example:
                    311:
                    312: <pre class="cmdbox">
                    313: $ <b>cd /usr/src</b>
                    314: $ <b>cvs -d /home/cvs -q up -Pd</b>
                    315: </pre>
                    316:
                    317: As of November 2019, repository sizes are as follows:
                    318:
                    319: <pre class="cmdbox">
                    320: $ <b>du -shc *</b>
                    321: 175M    CVSROOT
                    322: 1.1G    ports
                    323: 2.9G    src
                    324: 787M    www
                    325: 1.7G    xenocara
                    326: 6.6G    total
                    327: </pre>
                    328:
                    329: <p>
                    330: The overall repository size currently increases at a rate
                    331: of about <b>400</b>MB per annum. The src repository increases by about
                    332: <b>150</b>MB.
                    333:
1.459     tb        334: <h3 id="CVSROOT">Available Anonymous CVS servers</h3>
1.1       deraadt   335:
                    336: <ul>
1.373     dlg       337: <li><strong>CVSROOT=anoncvs@anoncvs.au.openbsd.org:/cvs</strong><br>
1.505     sthen     338: <strong>reposync rsync://anoncvs.au.openbsd.org/cvs/</strong><br>
1.373     dlg       339: Location: Brisbane, Australia.<br>
                    340: Maintained by <a href="mailto:dlg@openbsd.org">David Gwynne</a>.<br>
                    341: Protocols: ssh.<br>
                    342: Updated hourly.<br>
                    343: SSH fingerprints:<br>
1.508     sthen     344: (RSA) <code>SHA256:pPcBY4E33vwreETbz5KJUIzZpWWzaZPhrpnLaFa7WuQ</code><br>
                    345: (ECDSA) <code>SHA256:kg2Zaqpd8ZuluPzlpFS9rEw0KR1UmxD9jSG6+2tr28A</code><br>
1.373     dlg       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.450     sthen     350: Maintained by <a href="mailto:beck@openbsd.org">Bob Beck</a>.<br>
1.451     sthen     351: Protocols: ssh.<br>
1.450     sthen     352: SSH fingerprints:<br>
1.508     sthen     353: (RSA) <code>SHA256:10SgQKcgCw02RSqBZGa8eGUR0ab+YkuhqFENhOoK1L4</code><br>
                    354: (ECDSA) <code>SHA256:hVx+UscX/3uhv2nxPgp2zC/omvDIBSkv6iISCn19yqQ</code><br>
                    355: (ED25519) <code>SHA256:WDEcVZFXagh0OXHlHVhcct6VjFjFqaNZwAhM3GnVA/c</code><br>
1.451     sthen     356: <p>
                    357: <li><strong>CVSROOT=anoncvs@anoncvs2.ca.openbsd.org:/cvs</strong><br>
                    358: Location: Alberta, Canada.<br>
                    359: Maintained by <a href="mailto:beck@openbsd.org">Bob Beck</a>.<br>
                    360: Protocols: ssh.<br>
                    361: SSH fingerprints:<br>
1.508     sthen     362: (RSA) <code>SHA256:VfzLrOeqzIfWiNdJ0SpHvk3JU4a+VpNzwjxzZ7lWaNY</code><br>
                    363: (ECDSA) <code>SHA256:IQrHoNZPHmhnR1R3qMURVH3e83f95IZXdkNjFZCnKfw</code><br>
                    364: (ED25519) <code>SHA256:7grIp6jKgas/PLrVqaSwLh60k626+iaGw/BBFSfr7ck</code><br>
1.246     steven    365: <p>
1.398     brad      366: <li><strong>CVSROOT=anoncvs@anoncvs.comstyle.com:/cvs</strong><br>
1.509   ! sthen     367: <strong>reposync rsync://anoncvs.comstyle.com/cvs/</strong><br>
1.398     brad      368: Location: Toronto, Canada.<br>
                    369: Maintained by <a href="mailto:brad@comstyle.com">Brad Smith</a>.<br>
                    370: Protocols: ssh, ssh port 2022.<br>
                    371: Updated hourly.<br>
                    372: SSH fingerprints:<br>
1.508     sthen     373: (RSA) <code>SHA256:vYSNKOoCHReBzmdJy3SiULg7YyEZVoib3X3jGJShezA</code><br>
                    374: (ECDSA) <code>SHA256:W2WEQDka4xicJzeQY0Nm0iCv3h2xZLzfp+TT1UvtBTw</code><br>
                    375: (ED25519) <code>SHA256:cqNaOU0KSmJ/S7jrV4UbZ6WkkyXWZ07rhWK8yrRZUV0</code><br>
1.398     brad      376: <p>
1.440     mmcc      377: <li><strong>CVSROOT=anoncvs@obsdacvs.cs.toronto.edu:/cvs</strong><br>
1.506     sthen     378: <strong>reposync rsync://obsdacvs.cs.toronto.edu/obsdcvs/</strong><br>
1.400     nick      379: Location: University of Toronto, Toronto, ON, Canada.<br>
                    380: Maintained by <a href="mailto:nick@holland-consulting.net">Nick Holland</a>.<br>
                    381: Protocols: ssh.<br>
1.501     sthen     382: Updated every 2 hours from main server.<br>
1.400     nick      383: SSH fingerprints:<br>
1.508     sthen     384: (RSA) <code>SHA256:BosSX+gUL/17cUdppQlmXht1S5GGHrHNrL6+U3hyG+o</code><br>
                    385: (ECDSA) <code>SHA256:4I5R4/tGayGG0KDEsj6CY1eCqt2sbcYtA3nqnhUaD04</code><br>
                    386: (ED25519) <code>SHA256:AqblfWV4KT2ptlpV3mq3gb4jNPzgYtjDvlBBcaeohxQ</code><br>
1.374     sthen     387: <p>
1.328     sthen     388: <li><strong>CVSROOT=anoncvs@anoncvs.fr.openbsd.org:/cvs</strong><br>
1.497     sthen     389: <strong>reposync rsync://anoncvs.fr.openbsd.org/openbsd-cvs/</strong><br>
1.328     sthen     390: Location: Paris, France.<br>
1.422     ajacouto  391: Maintained by <a href="mailto:openbsd-mirror@bsdfrog.org">Landry Breuil, Antoine Jacoutot</a>.<br>
1.328     sthen     392: Protocols: ssh.<br>
1.501     sthen     393: Updated every 2 hours from main server.<br>
1.328     sthen     394: SSH fingerprints:<br>
1.508     sthen     395: (RSA) <code>SHA256:d3o82eY/kIfUfmhVpwFu7Do1I7+Wol/tvWmm6Ye9HZ4</code><br>
                    396: (ECDSA) <code>SHA256:WXN4m8NHd4vcTqxmzLMMVenSh6gp8060nv39JIiCSss</code><br>
                    397: (ED25519) <code>SHA256:STeC5WGChnZjIi5Rb+XTAQSbKXQJ+B9wxhaacYNff7k</code><br>
1.381     sthen     398: <p>
1.438     sthen     399: <li><strong>CVSROOT=anoncvs@files.venture37.com:/cvs</strong><br>
                    400: Location: Paris, France.<br>
                    401: Maintained by <a href="mailto:mirror@venture37.com">Sevan Janiyan</a>.<br>
                    402: Protocols: ssh, ssh port 2022.<br>
                    403: Updated every 2 hours from anoncvs.spacehopper.org.<br>
                    404: SSH fingerprints:<br>
1.508     sthen     405: (RSA) <code>SHA256:3pG6tZMZkMSeCUrDUdp1qQ9dC5I0A+Pj1A0cXkLVoP4</code><br>
                    406: (ECDSA) <code>SHA256:2InpK4FJMYTnOPgvSbQtyEIcbTNtZKsPsaa3fBBxUhY</code><br>
                    407: (ED25519) <code>SHA256:IL+TcuRUBiaI+EkdjLDoLkwqOEZdt8bccgVINDRMHlM</code><br>
1.438     sthen     408: <p>
1.246     steven    409: <li><strong>CVSROOT=anoncvs@mirror.osn.de:/cvs</strong><br>
1.503     sthen     410: <strong>reposync -p rsync://mirror.osn.de/openbsd-all/</strong><br>
1.249     nick      411: Location: N&uuml;rnberg, Germany.<br>
                    412: Maintained by <a href="mailto:aw@osn.de">Armin Wolfermann</a>.<br>
                    413: Protocols: ssh.<br>
1.307     sthen     414: Updated every 3 hours.<br>
1.215     david     415: SSH fingerprints:<br>
1.508     sthen     416: (RSA) <code>SHA256:fQGY+UhLdbB3oDI4frFtSKF2BjQIkSY0lnSA6lVv8+o</code><br>
                    417: (ECDSA) <code>SHA256:plj+1CPTaKi0AIId/aDMCGgZZnkxc1ow+ffBNMvYW4A</code><br>
                    418: (ED25519) <code>SHA256:np+DK8xlo9A4YnYXO/22GBV8iyuL13r3g5I0/N1Mf8g</code><br>
1.246     steven    419: <p>
1.406     florian   420: <li><strong>CVSROOT=anoncvs@ftp.hostserver.de:/cvs</strong><br>
1.503     sthen     421: <strong>reposync rsync://ftp.hostserver.de/cvs/</strong><br>
1.406     florian   422: Location: Frankfurt, Germany.<br>
1.502     benno     423: Maintained by <a href="mailto:mirror@hostserver.de">Sebastian Benoit, Florian Obser</a>.<br>
1.406     florian   424: Protocols: ssh.<br>
1.501     sthen     425: Updated hourly from main server.<br>
1.406     florian   426: SSH fingerprints:<br>
1.508     sthen     427: (RSA) <code>SHA256:XrjDaKqJ6J02iSQ/eoiqII0LxJX9D/41eeC6pSQAJXs</code><br>
                    428: (ECDSA) <code>SHA256:v6G11hMFfS2+zPh44hhZcpUqDEppyvGQe0vzmrtIHA8</code><br>
                    429: (ED25519) <code>SHA256:KeG1InAfAnQKqpCewmXw/Egb+4UZZuIMGdlYVG+uxNg</code><br>
1.406     florian   430: <p>
1.246     steven    431: <li><strong>CVSROOT=anoncvs@anoncvs.jp.openbsd.org:/cvs</strong><br>
1.504     benno     432: <strong>reposync rsync://anoncvs.jp.openbsd.org/cvs/</strong><br>
1.249     nick      433: Host also known as <strong>kankoromochi.econ.nagasaki-u.ac.jp</strong>.<br>
                    434: Location: Nagasaki University, Faculty of Economics, Nagasaki, Japan.<br>
1.410     sthen     435: Maintained by <a href="mailto:sigh@nagasaki-u.ac.jp">SUZUKI Hitoshi</a>.<br>
1.505     sthen     436: Protocols: ssh.<br>
1.504     benno     437: Updated every 2 hours.<br>
1.410     sthen     438: SSH fingerprints:<br>
1.508     sthen     439: (RSA) <code>SHA256:3XcKWDBEcB5XE4shCmRfh0LmSOyDcp4vcSQp8NK62Gk</code><br>
                    440: (ECDSA) <code>SHA256:aXpmw11DuXXLm8PsJ37L65jEXbu8JF2cnVfQptSkoyQ</code><br>
                    441: (ED25519) <code>SHA256:vLLJFhJCzzmXd7FwgQ+vJpnAQiDibSS2aZOgeuVZmjQ</code><br>
1.176     miod      442: <p>
1.454     sthen     443: <li><strong>CVSROOT=anoncvs@mirror.litnet.lt:/cvs</strong><br>
                    444: Location: Kaunas, Lithuania.<br>
                    445: Maintained by <a href="mailto:pkugrinas@gmail.com">Patrikas Kugrinas</a>.<br>
                    446: Protocols: ssh.<br>
                    447: Updated every 2 hours from anoncvs.eu.openbsd.org.<br>
                    448: SSH fingerprints:<br>
1.508     sthen     449: (RSA) <code>SHA256:RmbGnT7IGLvVd9tm5mAx7rz6VntYlwqW6qyT2QuritY</code><br>
                    450: (ECDSA) <code>SHA256:hj1btBB8gqLdm3EumX3T3LaUZkY9fm1RFvw9DVS2oi8</code><br>
                    451: (ED25519) <code>SHA256:EnczVm1Q8+lE+Zmue3jAPh/pA6BJhEDwL+HNMfedpXI</code><br>
1.454     sthen     452: <p>
1.267     grunk     453: <li><strong>CVSROOT=anoncvs@anoncvs.obsd.si:/cvs</strong><br>
                    454: Location: Ljubljana, Slovenia.<br>
1.397     naddy     455: Maintained by <a href="mailto:mitja@kerberos.si">Mitja Mu&#382;eni&#269;</a>.<br>
1.267     grunk     456: Protocols: ssh.<br>
1.377     sthen     457: Updated every 2 hours from anoncvs.spacehopper.org.<br>
1.267     grunk     458: <p>
1.328     sthen     459: <li><strong>CVSROOT=anoncvs@anoncvs.eu.openbsd.org:/cvs</strong><br>
1.503     sthen     460: <strong>reposync -p rsync://anoncvs.eu.openbsd.org/OpenBSD-cvs/</strong><br>
1.328     sthen     461: Location: Stockholm University, Stockholm, Sweden.<br>
1.477     anton     462: Maintained by <a href="mailto:jj@deadzoft.org">Janne Johansson</a>.<br>
1.328     sthen     463: Protocols: ssh.<br>
1.501     sthen     464: Updated every 2 hours from main server.<br>
1.328     sthen     465: SSH fingerprints:<br>
1.508     sthen     466: (RSA) <code>SHA256:4gXNO1FcLP8Swdm759TMDI/73hCCO5kQr3vqi9o/r64</code><br>
                    467: (ECDSA) <code>SHA256:uz1m+x471U/+3dGsDgvYI/o+pmobQhuILMcr/fZcr6E</code><br>
                    468: (ED25519) <code>SHA256:txtWp19E25H1oSarwXzYTDDr46jsVeolIprB02OOfM8</code><br>
1.446     sthen     469: <p>
1.328     sthen     470: <li><strong>CVSROOT=anoncvs@anoncvs.spacehopper.org:/cvs</strong><br>
1.503     sthen     471: <strong>reposync rsync://anoncvs.spacehopper.org/cvs/</strong><br>
1.482     sthen     472: Location: Plymouth, United Kingdom.<br>
1.328     sthen     473: Maintained by <a href="mailto:sthen@openbsd.org">Stuart Henderson</a>.<br>
1.354     sthen     474: Protocols: ssh, ssh port 2022, ssh port 443.<br>
1.501     sthen     475: Updated hourly from main server.<br>
1.328     sthen     476: SSH fingerprints:<br>
1.508     sthen     477: (RSA) <code>SHA256:orTIOu6IKP7Ndz317tyCaz8LJnJWz4jmzSuG+FK7jwM</code><br>
                    478: (ECDSA) <code>SHA256:p+VCx2KynGtiFFaaiF010SIQu6gJgmJb//yokW2sGBE</code><br>
                    479: (ED25519) <code>SHA256:oaJ7VEyjt2EHMeixzKn9zJGiV5YlWHIUls070tKdBzI</code><br>
1.437     sthen     480: <p>
1.453     millert   481: <li><strong>CVSROOT=anoncvs@anoncvs4.usa.openbsd.org:/cvs</strong><br>
1.503     sthen     482: <strong>reposync rsync://anoncvs4.usa.openbsd.org/cvs/</strong><br>
1.453     millert   483: Location: New York Internet, New York, NY, USA.<br>
                    484: Maintained by <a href="mailto:millert@openbsd.org">Todd C. Miller</a>.<br>
                    485: Protocols: ssh, ssh port 2022.<br>
1.501     sthen     486: Updated hourly from main server.<br>
1.453     millert   487: SSH fingerprints:<br>
1.508     sthen     488: (RSA) <code>SHA256:RT7vVXrvmKgZ7VkrVZ0lgugDFCBPVT6iSwMh+m1vZTA</code><br>
                    489: (ECDSA) <code>SHA256:JreaFNTlm2Uhlk3iaMs4Rweq27KPSVYUgj9sZUsOxCc</code><br>
                    490: (ED25519) <code>SHA256:iLsNcXOnluavlGUV+O4JE7TNppEwIMvsjZ7m1VVObiM</code><br>
1.453     millert   491: <p>
1.439     millert   492: <li><strong>CVSROOT=anoncvs@anoncvs2.usa.openbsd.org:/cvs</strong><br>
1.503     sthen     493: <strong>reposync rsync://anoncvs2.usa.openbsd.org/cvs/</strong><br>
1.490     tj        494: Host also known as <strong>anoncvs3.usa.openbsd.org, ftp3.usa.openbsd.org, ftp5.usa.openbsd.org, openbsd.se.rit.edu</strong>.<br>
1.437     sthen     495: Location: Rochester Institute of Technology, Rochester, NY, USA.<br>
                    496: Maintained by <a href="mailto:millert@openbsd.org">Todd C. Miller</a>.<br>
                    497: Protocols: ssh, ssh port 2022.<br>
1.501     sthen     498: Updated hourly from main server.<br>
1.437     sthen     499: SSH fingerprints:<br>
1.508     sthen     500: (RSA) <code>SHA256:O/qRkEam5QXBxAcHA8qEEHXp9D2Ad1RMS43crbP+PDE</code><br>
                    501: (ECDSA) <code>SHA256:Bt9zXfPRYnP8DDBEXhH0SwCs3fU8EX/UA1Q5ypzkRdg</code><br>
                    502: (ED25519) <code>SHA256:c+jgUzXaKxwtbQUy+dfpC340p4bVzFYDNIDxW3dUO3A</code><br>
1.437     sthen     503: <p>
                    504: <li><strong>CVSROOT=anoncvs@anoncvs1.usa.openbsd.org:/cvs</strong><br>
1.503     sthen     505: <strong>reposync rsync://anoncvs1.usa.openbsd.org/cvs/</strong><br>
1.478     sthen     506: Host also known as <strong>anoncvs.usa.openbsd.org</strong>.<br>
1.437     sthen     507: Location: Network Media, LLC, Bend, OR, USA.<br>
                    508: Maintained by <a href="mailto:millert@openbsd.org">Todd C. Miller</a>.<br>
                    509: Protocols: ssh, pserver.<br>
1.501     sthen     510: Updated hourly from main server.<br>
1.437     sthen     511: SSH fingerprints:<br>
1.508     sthen     512: (RSA) <code>SHA256:PFKE28DFbJLmqoLkq9xfBuiYl9GN2LABsvUpzNk+LlE</code><br>
                    513: (ECDSA) <code>SHA256:Ofstc7xq/W+73vBMUpb3A4ZqLNhKI3u2FdzbOkJpOHI</code><br>
                    514: (ED25519) <code>SHA256:IYHq/zKqYnd2wy71Br6X8Q1Jk0XGjOJA4PU6CAr6pDo</code><br>
1.415     sthen     515: <p>
1.408     sthen     516: <li><strong>CVSROOT=anoncvs@anoncvs.obsd.esc7.net:/cvs</strong><br>
                    517: Location: Dallas, TX, USA.<br>
                    518: Maintained by <a href="mailto:bwarriner@esc7.net">Ben Warriner</a>.<br>
                    519: Protocols: ssh.<br>
                    520: Updated every 2 hours from anoncvs1.usa.openbsd.org.<br>
                    521: SSH fingerprints:<br>
1.508     sthen     522: (RSA) <code>SHA256:dRMTujuH5R6Ds5VTDxFQZjA4OU0JpQg9yfeJP6dAWPg</code><br>
                    523: (ECDSA) <code>SHA256:zB+Lu/WgMAqD2fq01h5xia3G/P9eFwoiDqoTxL5sSI0</code><br>
                    524: (ED25519) <code>SHA256:1B6cgj0EnAodwiIdAl54SMWoaAoljh82jlNnhinseTM</code><br>
1.408     sthen     525: <p>
1.246     steven    526:
1.73      deraadt   527: </ul>
1.84      beck      528:
1.493     bentley   529: <p>
1.461     tb        530: If your server is listed on here with inaccurate or unknown information, please
1.493     bentley   531: contact <a href="mailto:beck@openbsd.org"><code>beck@openbsd.org</code></a>.
1.104     ericj     532:
1.80      beck      533: <p>
1.497     sthen     534: You may want to use
1.473     tb        535: <a href="https://man.openbsd.org/traceroute">traceroute(8)</a>
1.249     nick      536: to find out which server is nearest you.
                    537: Problems with a server should be reported to the <b>maintainer</b> of the
                    538: server in question.
1.104     ericj     539:
1.159     jcs       540: <p>
1.249     nick      541: If local policy prevents outgoing connections to ssh's default port of 22,
1.370     rpe       542: some servers permit connections on an alternative port (typically 2022).
                    543: These are noted in the list above.
1.493     bentley   544: To use a different port, reconfigure your ssh client by adding a <code>Host</code>
                    545: entry to <code>$HOME/.ssh/config</code>, e.g.:
1.485     tj        546: <pre class="cmdbox">
1.461     tb        547: Host anoncvs.ca.openbsd.org
                    548:     Port 2022
1.485     tj        549: </pre>
1.1       deraadt   550:
1.461     tb        551: <h3 id="MIRROR">Setting up an anoncvs mirror</h3>
1.105     ericj     552:
1.493     bentley   553: <p>
1.461     tb        554: Anoncvs mirrors currently require about 6GB of disk (and it will grow!), and use
                    555: up to 64MB of swap per anoncvs user (assuming the user does a large operation;
                    556: while smaller operations use fewer resources, anoncvs still makes much more of
                    557: an impact than ftp).
                    558: Such anoncvs machines should have excellent network connectivity for the area
                    559: they are expected to serve.
                    560: A <a href="anoncvs.shar">document</a> which describes the setup of anoncvs
                    561: servers is available.
                    562:
                    563: <h3 id="NOTES">Final notes</h3>
                    564:
1.493     bentley   565: <p>
1.461     tb        566: After upgrading your source tree, you should read the comments at the top of
1.493     bentley   567: <code>/usr/src/Makefile</code> before attempting a build.
                    568: Also, you should build a new kernel <strong>before</strong> doing a <kbd>make build</kbd>
1.461     tb        569: if possible.
1.493     bentley   570: In some cases it may be necessary to rebuild and install the <code>config</code>
1.461     tb        571: utility before you can build the kernel.
1.493     bentley   572: If <kbd>config GENERIC</kbd> fails this is probably the case.
1.461     tb        573:
1.249     nick      574: <p>
                    575: It is important to note that upgrading from a release to the current tree
                    576: by rebuilding the sources can be rather difficult due to dependencies
1.461     tb        577: that are often not obvious.
                    578: Therefore, it is suggested that you first install the latest snapshot before
                    579: attempting a tree build from source.