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

Annotation of www/anoncvs.html, Revision 1.521

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.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
                     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.521   ! tj        138: If you are following the 7.2 -stable branch:
1.99      ericj     139:
1.485     tj        140: <pre class="cmdbox">
1.457     tj        141: $ <b>cd /usr</b>
1.521   ! tj        142: $ <b>cvs -qd anoncvs@anoncvs.ca.openbsd.org:/cvs checkout -rOPENBSD_7_2 -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.521   ! tj        181: If you are following the 7.2 -stable branch:
1.370     rpe       182:
1.485     tj        183: <pre class="cmdbox">
1.457     tj        184: $ <b>cd /usr/src</b>
1.521   ! tj        185: $ <b>cvs -q up -Pd -rOPENBSD_7_2</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.521   ! tj        224: If you are following the 7.2 -stable branch:
1.457     tj        225:
1.485     tj        226: <pre class="cmdbox">
1.457     tj        227: $ <b>cd /usr</b>
1.521   ! tj        228: $ <b>cvs -qd anoncvs@anoncvs.ca.openbsd.org:/cvs checkout -rOPENBSD_7_2 -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.521   ! tj        242: If you are following the 7.2 -stable branch:
1.457     tj        243:
1.485     tj        244: <pre class="cmdbox">
1.457     tj        245: $ <b>cd /usr/ports</b>
1.521   ! tj        246: $ <b>cvs -q up -Pd -rOPENBSD_7_2</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.373     dlg       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.246     steven    346: <li><strong>CVSROOT=anoncvs@anoncvs1.ca.openbsd.org:/cvs</strong><br>
1.249     nick      347: Host also known as <strong>anoncvs.ca.openbsd.org, openbsd.sunsite.ualberta.ca</strong>.<br>
1.328     sthen     348: Location: Alberta, Canada.<br>
1.450     sthen     349: Maintained by <a href="mailto:beck@openbsd.org">Bob Beck</a>.<br>
1.451     sthen     350: Protocols: ssh.<br>
1.450     sthen     351: SSH fingerprints:<br>
1.508     sthen     352: (RSA) <code>SHA256:10SgQKcgCw02RSqBZGa8eGUR0ab+YkuhqFENhOoK1L4</code><br>
                    353: (ECDSA) <code>SHA256:hVx+UscX/3uhv2nxPgp2zC/omvDIBSkv6iISCn19yqQ</code><br>
                    354: (ED25519) <code>SHA256:WDEcVZFXagh0OXHlHVhcct6VjFjFqaNZwAhM3GnVA/c</code><br>
1.451     sthen     355: <p>
                    356: <li><strong>CVSROOT=anoncvs@anoncvs2.ca.openbsd.org:/cvs</strong><br>
                    357: Location: Alberta, Canada.<br>
                    358: Maintained by <a href="mailto:beck@openbsd.org">Bob Beck</a>.<br>
                    359: Protocols: ssh.<br>
                    360: SSH fingerprints:<br>
1.508     sthen     361: (RSA) <code>SHA256:VfzLrOeqzIfWiNdJ0SpHvk3JU4a+VpNzwjxzZ7lWaNY</code><br>
                    362: (ECDSA) <code>SHA256:IQrHoNZPHmhnR1R3qMURVH3e83f95IZXdkNjFZCnKfw</code><br>
                    363: (ED25519) <code>SHA256:7grIp6jKgas/PLrVqaSwLh60k626+iaGw/BBFSfr7ck</code><br>
1.246     steven    364: <p>
1.398     brad      365: <li><strong>CVSROOT=anoncvs@anoncvs.comstyle.com:/cvs</strong><br>
1.509     sthen     366: <strong>reposync rsync://anoncvs.comstyle.com/cvs/</strong><br>
1.398     brad      367: Location: Toronto, Canada.<br>
                    368: Maintained by <a href="mailto:brad@comstyle.com">Brad Smith</a>.<br>
                    369: Protocols: ssh, ssh port 2022.<br>
                    370: Updated hourly.<br>
                    371: SSH fingerprints:<br>
1.508     sthen     372: (RSA) <code>SHA256:vYSNKOoCHReBzmdJy3SiULg7YyEZVoib3X3jGJShezA</code><br>
                    373: (ECDSA) <code>SHA256:W2WEQDka4xicJzeQY0Nm0iCv3h2xZLzfp+TT1UvtBTw</code><br>
                    374: (ED25519) <code>SHA256:cqNaOU0KSmJ/S7jrV4UbZ6WkkyXWZ07rhWK8yrRZUV0</code><br>
1.398     brad      375: <p>
1.440     mmcc      376: <li><strong>CVSROOT=anoncvs@obsdacvs.cs.toronto.edu:/cvs</strong><br>
1.506     sthen     377: <strong>reposync rsync://obsdacvs.cs.toronto.edu/obsdcvs/</strong><br>
1.400     nick      378: Location: University of Toronto, Toronto, ON, Canada.<br>
                    379: Maintained by <a href="mailto:nick@holland-consulting.net">Nick Holland</a>.<br>
                    380: Protocols: ssh.<br>
1.501     sthen     381: Updated every 2 hours from main server.<br>
1.400     nick      382: SSH fingerprints:<br>
1.508     sthen     383: (RSA) <code>SHA256:BosSX+gUL/17cUdppQlmXht1S5GGHrHNrL6+U3hyG+o</code><br>
                    384: (ECDSA) <code>SHA256:4I5R4/tGayGG0KDEsj6CY1eCqt2sbcYtA3nqnhUaD04</code><br>
                    385: (ED25519) <code>SHA256:AqblfWV4KT2ptlpV3mq3gb4jNPzgYtjDvlBBcaeohxQ</code><br>
1.374     sthen     386: <p>
1.328     sthen     387: <li><strong>CVSROOT=anoncvs@anoncvs.fr.openbsd.org:/cvs</strong><br>
1.497     sthen     388: <strong>reposync rsync://anoncvs.fr.openbsd.org/openbsd-cvs/</strong><br>
1.328     sthen     389: Location: Paris, France.<br>
1.422     ajacouto  390: Maintained by <a href="mailto:openbsd-mirror@bsdfrog.org">Landry Breuil, Antoine Jacoutot</a>.<br>
1.328     sthen     391: Protocols: ssh.<br>
1.501     sthen     392: Updated every 2 hours from main server.<br>
1.328     sthen     393: SSH fingerprints:<br>
1.508     sthen     394: (RSA) <code>SHA256:d3o82eY/kIfUfmhVpwFu7Do1I7+Wol/tvWmm6Ye9HZ4</code><br>
                    395: (ECDSA) <code>SHA256:WXN4m8NHd4vcTqxmzLMMVenSh6gp8060nv39JIiCSss</code><br>
                    396: (ED25519) <code>SHA256:STeC5WGChnZjIi5Rb+XTAQSbKXQJ+B9wxhaacYNff7k</code><br>
1.381     sthen     397: <p>
1.438     sthen     398: <li><strong>CVSROOT=anoncvs@files.venture37.com:/cvs</strong><br>
                    399: Location: Paris, France.<br>
                    400: Maintained by <a href="mailto:mirror@venture37.com">Sevan Janiyan</a>.<br>
                    401: Protocols: ssh, ssh port 2022.<br>
                    402: Updated every 2 hours from anoncvs.spacehopper.org.<br>
                    403: SSH fingerprints:<br>
1.508     sthen     404: (RSA) <code>SHA256:3pG6tZMZkMSeCUrDUdp1qQ9dC5I0A+Pj1A0cXkLVoP4</code><br>
                    405: (ECDSA) <code>SHA256:2InpK4FJMYTnOPgvSbQtyEIcbTNtZKsPsaa3fBBxUhY</code><br>
                    406: (ED25519) <code>SHA256:IL+TcuRUBiaI+EkdjLDoLkwqOEZdt8bccgVINDRMHlM</code><br>
1.438     sthen     407: <p>
1.246     steven    408: <li><strong>CVSROOT=anoncvs@mirror.osn.de:/cvs</strong><br>
1.503     sthen     409: <strong>reposync -p rsync://mirror.osn.de/openbsd-all/</strong><br>
1.249     nick      410: Location: N&uuml;rnberg, Germany.<br>
                    411: Maintained by <a href="mailto:aw@osn.de">Armin Wolfermann</a>.<br>
                    412: Protocols: ssh.<br>
1.307     sthen     413: Updated every 3 hours.<br>
1.215     david     414: SSH fingerprints:<br>
1.508     sthen     415: (RSA) <code>SHA256:fQGY+UhLdbB3oDI4frFtSKF2BjQIkSY0lnSA6lVv8+o</code><br>
                    416: (ECDSA) <code>SHA256:plj+1CPTaKi0AIId/aDMCGgZZnkxc1ow+ffBNMvYW4A</code><br>
                    417: (ED25519) <code>SHA256:np+DK8xlo9A4YnYXO/22GBV8iyuL13r3g5I0/N1Mf8g</code><br>
1.246     steven    418: <p>
1.406     florian   419: <li><strong>CVSROOT=anoncvs@ftp.hostserver.de:/cvs</strong><br>
1.503     sthen     420: <strong>reposync rsync://ftp.hostserver.de/cvs/</strong><br>
1.406     florian   421: Location: Frankfurt, Germany.<br>
1.502     benno     422: Maintained by <a href="mailto:mirror@hostserver.de">Sebastian Benoit, Florian Obser</a>.<br>
1.406     florian   423: Protocols: ssh.<br>
1.501     sthen     424: Updated hourly from main server.<br>
1.406     florian   425: SSH fingerprints:<br>
1.508     sthen     426: (RSA) <code>SHA256:XrjDaKqJ6J02iSQ/eoiqII0LxJX9D/41eeC6pSQAJXs</code><br>
                    427: (ECDSA) <code>SHA256:v6G11hMFfS2+zPh44hhZcpUqDEppyvGQe0vzmrtIHA8</code><br>
                    428: (ED25519) <code>SHA256:KeG1InAfAnQKqpCewmXw/Egb+4UZZuIMGdlYVG+uxNg</code><br>
1.406     florian   429: <p>
1.246     steven    430: <li><strong>CVSROOT=anoncvs@anoncvs.jp.openbsd.org:/cvs</strong><br>
1.504     benno     431: <strong>reposync rsync://anoncvs.jp.openbsd.org/cvs/</strong><br>
1.249     nick      432: Host also known as <strong>kankoromochi.econ.nagasaki-u.ac.jp</strong>.<br>
                    433: Location: Nagasaki University, Faculty of Economics, Nagasaki, Japan.<br>
1.410     sthen     434: Maintained by <a href="mailto:sigh@nagasaki-u.ac.jp">SUZUKI Hitoshi</a>.<br>
1.505     sthen     435: Protocols: ssh.<br>
1.504     benno     436: Updated every 2 hours.<br>
1.410     sthen     437: SSH fingerprints:<br>
1.508     sthen     438: (RSA) <code>SHA256:3XcKWDBEcB5XE4shCmRfh0LmSOyDcp4vcSQp8NK62Gk</code><br>
                    439: (ECDSA) <code>SHA256:aXpmw11DuXXLm8PsJ37L65jEXbu8JF2cnVfQptSkoyQ</code><br>
                    440: (ED25519) <code>SHA256:vLLJFhJCzzmXd7FwgQ+vJpnAQiDibSS2aZOgeuVZmjQ</code><br>
1.176     miod      441: <p>
1.454     sthen     442: <li><strong>CVSROOT=anoncvs@mirror.litnet.lt:/cvs</strong><br>
                    443: Location: Kaunas, Lithuania.<br>
                    444: Maintained by <a href="mailto:pkugrinas@gmail.com">Patrikas Kugrinas</a>.<br>
                    445: Protocols: ssh.<br>
                    446: Updated every 2 hours from anoncvs.eu.openbsd.org.<br>
                    447: SSH fingerprints:<br>
1.508     sthen     448: (RSA) <code>SHA256:RmbGnT7IGLvVd9tm5mAx7rz6VntYlwqW6qyT2QuritY</code><br>
                    449: (ECDSA) <code>SHA256:hj1btBB8gqLdm3EumX3T3LaUZkY9fm1RFvw9DVS2oi8</code><br>
                    450: (ED25519) <code>SHA256:EnczVm1Q8+lE+Zmue3jAPh/pA6BJhEDwL+HNMfedpXI</code><br>
1.454     sthen     451: <p>
1.267     grunk     452: <li><strong>CVSROOT=anoncvs@anoncvs.obsd.si:/cvs</strong><br>
                    453: Location: Ljubljana, Slovenia.<br>
1.397     naddy     454: Maintained by <a href="mailto:mitja@kerberos.si">Mitja Mu&#382;eni&#269;</a>.<br>
1.267     grunk     455: Protocols: ssh.<br>
1.377     sthen     456: Updated every 2 hours from anoncvs.spacehopper.org.<br>
1.267     grunk     457: <p>
1.328     sthen     458: <li><strong>CVSROOT=anoncvs@anoncvs.eu.openbsd.org:/cvs</strong><br>
1.503     sthen     459: <strong>reposync -p rsync://anoncvs.eu.openbsd.org/OpenBSD-cvs/</strong><br>
1.328     sthen     460: Location: Stockholm University, Stockholm, Sweden.<br>
1.477     anton     461: Maintained by <a href="mailto:jj@deadzoft.org">Janne Johansson</a>.<br>
1.328     sthen     462: Protocols: ssh.<br>
1.501     sthen     463: Updated every 2 hours from main server.<br>
1.328     sthen     464: SSH fingerprints:<br>
1.508     sthen     465: (RSA) <code>SHA256:4gXNO1FcLP8Swdm759TMDI/73hCCO5kQr3vqi9o/r64</code><br>
                    466: (ECDSA) <code>SHA256:uz1m+x471U/+3dGsDgvYI/o+pmobQhuILMcr/fZcr6E</code><br>
                    467: (ED25519) <code>SHA256:txtWp19E25H1oSarwXzYTDDr46jsVeolIprB02OOfM8</code><br>
1.446     sthen     468: <p>
1.328     sthen     469: <li><strong>CVSROOT=anoncvs@anoncvs.spacehopper.org:/cvs</strong><br>
1.503     sthen     470: <strong>reposync rsync://anoncvs.spacehopper.org/cvs/</strong><br>
1.482     sthen     471: Location: Plymouth, United Kingdom.<br>
1.328     sthen     472: Maintained by <a href="mailto:sthen@openbsd.org">Stuart Henderson</a>.<br>
1.354     sthen     473: Protocols: ssh, ssh port 2022, ssh port 443.<br>
1.501     sthen     474: Updated hourly from main server.<br>
1.328     sthen     475: SSH fingerprints:<br>
1.508     sthen     476: (RSA) <code>SHA256:orTIOu6IKP7Ndz317tyCaz8LJnJWz4jmzSuG+FK7jwM</code><br>
                    477: (ECDSA) <code>SHA256:p+VCx2KynGtiFFaaiF010SIQu6gJgmJb//yokW2sGBE</code><br>
                    478: (ED25519) <code>SHA256:oaJ7VEyjt2EHMeixzKn9zJGiV5YlWHIUls070tKdBzI</code><br>
1.437     sthen     479: <p>
1.453     millert   480: <li><strong>CVSROOT=anoncvs@anoncvs4.usa.openbsd.org:/cvs</strong><br>
1.503     sthen     481: <strong>reposync rsync://anoncvs4.usa.openbsd.org/cvs/</strong><br>
1.453     millert   482: Location: New York Internet, New York, NY, USA.<br>
                    483: Maintained by <a href="mailto:millert@openbsd.org">Todd C. Miller</a>.<br>
                    484: Protocols: ssh, ssh port 2022.<br>
1.501     sthen     485: Updated hourly from main server.<br>
1.453     millert   486: SSH fingerprints:<br>
1.508     sthen     487: (RSA) <code>SHA256:RT7vVXrvmKgZ7VkrVZ0lgugDFCBPVT6iSwMh+m1vZTA</code><br>
                    488: (ECDSA) <code>SHA256:JreaFNTlm2Uhlk3iaMs4Rweq27KPSVYUgj9sZUsOxCc</code><br>
                    489: (ED25519) <code>SHA256:iLsNcXOnluavlGUV+O4JE7TNppEwIMvsjZ7m1VVObiM</code><br>
1.453     millert   490: <p>
1.439     millert   491: <li><strong>CVSROOT=anoncvs@anoncvs2.usa.openbsd.org:/cvs</strong><br>
1.503     sthen     492: <strong>reposync rsync://anoncvs2.usa.openbsd.org/cvs/</strong><br>
1.490     tj        493: 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     494: Location: Rochester Institute of Technology, Rochester, NY, USA.<br>
                    495: Maintained by <a href="mailto:millert@openbsd.org">Todd C. Miller</a>.<br>
                    496: Protocols: ssh, ssh port 2022.<br>
1.501     sthen     497: Updated hourly from main server.<br>
1.437     sthen     498: SSH fingerprints:<br>
1.508     sthen     499: (RSA) <code>SHA256:O/qRkEam5QXBxAcHA8qEEHXp9D2Ad1RMS43crbP+PDE</code><br>
                    500: (ECDSA) <code>SHA256:Bt9zXfPRYnP8DDBEXhH0SwCs3fU8EX/UA1Q5ypzkRdg</code><br>
                    501: (ED25519) <code>SHA256:c+jgUzXaKxwtbQUy+dfpC340p4bVzFYDNIDxW3dUO3A</code><br>
1.437     sthen     502: <p>
                    503: <li><strong>CVSROOT=anoncvs@anoncvs1.usa.openbsd.org:/cvs</strong><br>
1.503     sthen     504: <strong>reposync rsync://anoncvs1.usa.openbsd.org/cvs/</strong><br>
1.478     sthen     505: Host also known as <strong>anoncvs.usa.openbsd.org</strong>.<br>
1.437     sthen     506: Location: Network Media, LLC, Bend, OR, USA.<br>
                    507: Maintained by <a href="mailto:millert@openbsd.org">Todd C. Miller</a>.<br>
                    508: Protocols: ssh, pserver.<br>
1.501     sthen     509: Updated hourly from main server.<br>
1.437     sthen     510: SSH fingerprints:<br>
1.508     sthen     511: (RSA) <code>SHA256:PFKE28DFbJLmqoLkq9xfBuiYl9GN2LABsvUpzNk+LlE</code><br>
                    512: (ECDSA) <code>SHA256:Ofstc7xq/W+73vBMUpb3A4ZqLNhKI3u2FdzbOkJpOHI</code><br>
                    513: (ED25519) <code>SHA256:IYHq/zKqYnd2wy71Br6X8Q1Jk0XGjOJA4PU6CAr6pDo</code><br>
1.415     sthen     514: <p>
1.408     sthen     515: <li><strong>CVSROOT=anoncvs@anoncvs.obsd.esc7.net:/cvs</strong><br>
                    516: Location: Dallas, TX, USA.<br>
                    517: Maintained by <a href="mailto:bwarriner@esc7.net">Ben Warriner</a>.<br>
                    518: Protocols: ssh.<br>
                    519: Updated every 2 hours from anoncvs1.usa.openbsd.org.<br>
                    520: SSH fingerprints:<br>
1.508     sthen     521: (RSA) <code>SHA256:dRMTujuH5R6Ds5VTDxFQZjA4OU0JpQg9yfeJP6dAWPg</code><br>
                    522: (ECDSA) <code>SHA256:zB+Lu/WgMAqD2fq01h5xia3G/P9eFwoiDqoTxL5sSI0</code><br>
                    523: (ED25519) <code>SHA256:1B6cgj0EnAodwiIdAl54SMWoaAoljh82jlNnhinseTM</code><br>
1.408     sthen     524: <p>
1.246     steven    525:
1.73      deraadt   526: </ul>
1.84      beck      527:
1.493     bentley   528: <p>
1.461     tb        529: If your server is listed on here with inaccurate or unknown information, please
1.493     bentley   530: contact <a href="mailto:beck@openbsd.org"><code>beck@openbsd.org</code></a>.
1.104     ericj     531:
1.80      beck      532: <p>
1.497     sthen     533: You may want to use
1.473     tb        534: <a href="https://man.openbsd.org/traceroute">traceroute(8)</a>
1.249     nick      535: to find out which server is nearest you.
                    536: Problems with a server should be reported to the <b>maintainer</b> of the
                    537: server in question.
1.104     ericj     538:
1.159     jcs       539: <p>
1.249     nick      540: If local policy prevents outgoing connections to ssh's default port of 22,
1.370     rpe       541: some servers permit connections on an alternative port (typically 2022).
                    542: These are noted in the list above.
1.493     bentley   543: To use a different port, reconfigure your ssh client by adding a <code>Host</code>
                    544: entry to <code>$HOME/.ssh/config</code>, e.g.:
1.485     tj        545: <pre class="cmdbox">
1.461     tb        546: Host anoncvs.ca.openbsd.org
                    547:     Port 2022
1.485     tj        548: </pre>
1.1       deraadt   549:
1.516     tj        550: <h3 id="MIRROR">Setting up an AnonCVS Mirror</h3>
1.105     ericj     551:
1.493     bentley   552: <p>
1.518     tj        553: <!-- XXXrelease - needs an occasional update -->
1.516     tj        554: AnonCVS mirrors currently require about 6GB of disk (and it will grow!), and use
1.461     tb        555: up to 64MB of swap per anoncvs user (assuming the user does a large operation;
1.516     tj        556: while smaller operations use fewer resources, AnonCVS still makes much more of
1.461     tb        557: an impact than ftp).
1.516     tj        558: Such AnonCVS machines should have excellent network connectivity for the area
1.461     tb        559: they are expected to serve.
1.516     tj        560: A <a href="anoncvs.shar">document</a> which describes the setup of AnonCVS
1.461     tb        561: servers is available.
                    562:
1.516     tj        563: <h3 id="NOTES">Final Notes</h3>
1.461     tb        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
1.516     tj        576: by rebuilding the sources is not supported.
1.461     tb        577: Therefore, it is suggested that you first install the latest snapshot before
                    578: attempting a tree build from source.