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

Annotation of www/34.html, Revision 1.42

1.1       david       1: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
                      2: <html>
                      3: <head>
                      4: <title>OpenBSD 3.4 Release</title>
                      5: <link rev=made href="mailto:www@openbsd.org">
                      6: <meta name="resource-type" content="document">
                      7: <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
                      8: <meta name="description" content="OpenBSD 3.4">
                      9: <meta name="keywords" content="openbsd,main">
                     10: <meta name="distribution" content="global">
                     11: <meta name="copyright" content="This document copyright 2003 by OpenBSD.">
                     12: </head>
                     13:
                     14: <body bgcolor="#ffffff" text="#000000" link="#24248E">
                     15:
                     16: <a href="index.html">
                     17: <img alt="[OpenBSD]" height="30" width="141" hspace="24" src="images/smalltitle.gif" border="0"></a>
                     18: <hr>
                     19:
                     20: <p>
                     21: <a href="images/Hood.gif">
1.26      deraadt    22: <img align="left" width="255" height="343" hspace="24" vspace="30"
1.1       david      23: src="images/Hood.gif" alt="OpenBSD 3.4 logo"></a>
                     24: <h2><font color="#0000e0">The OpenBSD 3.4 Release:</font></h2>
                     25: <p>
                     26: Released Nov 1, 2003<br>
                     27: Copyright 1997-2003, Theo de Raadt.<br>
                     28: <font color="#e00000">ISBN 0-9731791-2-0</font>
1.41      deraadt    29: <br>
                     30: <a href="lyrics.html#34">3.4 Song: "The Legend of Puffy Hood"</a>
1.1       david      31: <p>
                     32:
                     33: <a href="#new">What's New</a><br>
                     34: <a href="#install">How to install</a><br>
                     35: <a href="#ports">How to use the ports tree</a><br>
                     36: <a href="orders.html">Ordering a CD set</a><br>
                     37:
                     38: <p>
                     39: <h3><font color="#0000e0">
                     40: To get the files for this release:
                     41: <ul>
                     42: <li>Order a CDROM from our <a href="orders.html">ordering system</a>.
                     43: <li>See the information on <a href="ftp.html">The FTP page</a> for
1.8       david      44:     a list of mirror machines.
1.1       david      45: <li>Go to the <font color="#e00000">pub/OpenBSD/3.4/</font> directory on
1.8       david      46:     one of the mirror sites.
1.1       david      47: <li>Briefly read the rest of this document.
1.40      deraadt    48: <li>Have a look at <a href="errata34.html">The 3.4 Errata page</a> for a list
1.8       david      49:     of bugs and workarounds.
1.38      david      50: <li>See a <a href="plus34.html">detailed log of changes</a> between the
1.8       david      51:     3.3 and 3.4 releases.
1.1       david      52: </ul>
                     53: </font></h3>
                     54: <br clear=all>
                     55:
                     56: <strong>Note:</strong> All applicable copyrights and credits can be found
                     57: in the applicable file sources found in the files src.tar.gz, sys.tar.gz,
                     58: XF4.tar.gz, or in the files fetched via ports.tar.gz.  The distribution
                     59: files used to build packages from the ports.tar.gz file are not included on
                     60: the CDROM because of lack of space.
                     61: <p>
                     62:
                     63: <a name="new"></a>
                     64: <hr>
                     65: <p>
                     66: <h3><font color="#0000e0">What's New</font></h3>
                     67: <p>
                     68: This is a partial list of new features and systems included in OpenBSD 3.4.
1.38      david      69: For a comprehensive list, see the <a href="plus34.html">changelog</a> leading
1.1       david      70: to 3.4.
                     71: <p>
                     72:
                     73: <ul>
                     74:
1.27      avsm       75: <li>The i386 architecture has been switched to the
                     76:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=elf">ELF</a>
                     77:      executable format.
1.1       david      78: <p>
                     79:
1.6       tedu       80: <li>Further W^X improvements, including support for the i386 architecture.
                     81:     Native i386 binaries have their executable segments rearranged to support
1.42    ! david      82:     isolating code from data, and the CPU CS limit is used to impose a best
1.14      deraadt    83:     effort limit on code execution.
1.1       david      84: <p>
                     85:
1.20      deraadt    86: <li><a href="http://www.openbsd.org/cgi-bin/man.cgi?query=ld.so">ld.so(1)</a>
                     87:     on ELF platforms now loads libraries in a random order for
1.14      deraadt    88:     greater resistance to attacks.  The i386 architecture also maps libraries
1.28      avsm       89:     into somewhat randomized addresses.  Together with W^X and
1.27      avsm       90:     <a href="http://www.research.ibm.com/trl/projects/security/ssp/">ProPolice</a>,
1.31      tedu       91:     these changes increase the difficulty of successfully exploiting an
                     92:     application error, such as a buffer overflow.
1.1       david      93: <p>
                     94:
                     95: <li>A static bounds checker has been added to the compiler to perform basic
1.4       avsm       96:     checks on functions which accept buffers and sizes.  The checker aims to
1.8       david      97:     find common mistakes in the use of library functions such as
1.4       avsm       98:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=strlcpy">strlcpy(3)</a>
                     99:     or <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=sscanf">sscanf(3)</a>
                    100:     without emitting any false positives.  Running it over the source and ports
                    101:     trees revealed over a hundred real bugs, which were fixed and submitted back
                    102:     to the original authors where possible.
1.1       david     103: <p>
                    104:
1.20      deraadt   105: <li>Privilege separation has been implemented for the
                    106:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=syslogd">syslogd(8)</a>
1.21      david     107:     daemon, making it much more robust against future errors.  The child which
                    108:     listens to network traffic now runs as a normal user and chroots itself,
                    109:     while the parent process tracks the state of the child and performs
                    110:     privileged operations on its behalf.
1.1       david     111: <p>
                    112:
                    113: <li>Many unsafe string functions have been removed from the kernel and userland
1.6       tedu      114:     utilities.  This audit is one of the most comprehensive OpenBSD has ever
                    115:     done, with thousands of occurrences of
1.12      deraadt   116:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=strcpy">strcpy(3)</a>,
                    117:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=strcat">strcat(3)</a>,
                    118:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=sprintf">sprintf(3)</a>,
1.8       david     119:     and
1.12      deraadt   120:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=vsprintf">vsprintf(3)</a>
1.4       avsm      121:     being replaced with safer, bounded alternatives such as
1.12      deraadt   122:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=strlcpy">strlcpy(3)</a>,
                    123:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=strlcat">strlcat(3)</a>,
                    124:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=snprintf">snprintf(3)</a>,
                    125:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=vsnprintf">vsnprintf(3)</a>,
                    126:     and
                    127:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=asprintf">asprintf(3)</a>.
1.1       david     128: <p>
                    129:
1.31      tedu      130: <li>Many improvements to and bugs fixed in the
                    131:     <a href="http://www.research.ibm.com/trl/projects/security/ssp/">
1.33      miod      132:     ProPolice</a> stack protector.  Several other code generation bugs
1.31      tedu      133:     for RISC architectures fixed.
                    134: <p>
                    135:
1.13      david     136: <li><a href="http://www.research.ibm.com/trl/projects/security/ssp/">
                    137:     ProPolice</a> stack protection has been enabled in the kernel as well.
1.1       david     138: <p>
                    139:
1.18      avsm      140: <li>Privilege separation has been implemented in the X server.  The privileged
1.15      david     141:     child process is responsible for the operations that can't be done after the
                    142:     main process has switched to a non-privileged user. This greatly reduces the
                    143:     potential damage that could be caused by malicious X clients, in case of
                    144:     bugs in the X server.
                    145: <p>
                    146:
1.20      deraadt   147: <li>Emulation support for binary compatibility is now controlled via
1.24      avsm      148:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=sysctl&amp;sektion=8">sysctl(8)</a>.
1.19      tedu      149:     Emulation is now disabled by default to limit exposure to malicious
                    150:     binaries, and can be enabled in
                    151:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=sysctl.conf">
                    152:     sysctl.conf(5)</a>.
1.16      tedu      153: <p>
                    154:
1.1       david     155: <li>Manual pages have been greatly cleaned up and improved.
                    156: <p>
                    157:
1.8       david     158: <li>The ports tree now supports building programs under
                    159:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=systrace">
                    160:     systrace(1)</a>, preventing the possibility of applications harming the
                    161:     system at compile-time via trojaned configuration scripts or otherwise.
1.1       david     162: <p>
                    163:
1.25      avsm      164: <li>Symbol caching in
                    165:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=ld.so">ld.so(1)</a>
                    166:     reduces the startup time of large applications.
1.23      tedu      167: <p>
                    168:
1.25      avsm      169: <li>More license fixes, including the removal of the advertising clause
1.6       tedu      170:     for large parts of the source tree.
                    171: <p>
                    172:
1.20      deraadt   173: <li>Replacement of GNU
1.22      deraadt   174: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=diff">diff(1)</a>,
                    175: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=diff3">diff3(1)</a>,
                    176: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=grep">grep(1)</a>,
                    177: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=egrep">egrep(1)</a>,
                    178: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=fgrep">fgrep(1)</a>,
                    179: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=zgrep">zgrep(1)</a>,
                    180: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=zegrep">zegrep(1)</a>,
                    181: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=zfgrep">zfgrep(1)</a>,
                    182: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=gzip">gzip(1)</a>,
                    183: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=zcat">zcat(1)</a>,
                    184: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=gunzip">gunzip(1)</a>,
                    185: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=gzcat">gzcat(1)</a>,
                    186: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=zcmp">zcmp(1)</a>,
                    187: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=zmore">zmore(1)</a>,
                    188: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=zdiff">zdiff(1)</a>,
                    189: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=zforce">zforce(1)</a>,
                    190: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=gzexe">gzexe(1)</a>,
1.20      deraadt   191: and
1.22      deraadt   192: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=znew">znew(1)</a>
1.20      deraadt   193: commands with BSD licensed equivalents.
                    194: <p>
                    195:
                    196: <li>Addition of read-only support for
                    197:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=mount_ntfs">NTFS</a>
                    198:     file systems.
                    199: <p>
                    200:
                    201: <li>Reliability improvements to layered file systems, enabling
                    202:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=mount_null">NULLFS</a>
                    203:     to work again.
1.6       tedu      204: <p>
                    205:
1.31      tedu      206: <li>Import of
                    207:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=growfs">growfs(8)</a>
                    208:     utility, allowing expansion of existing file systems.
                    209: <p>
                    210:
1.26      deraadt   211: <li>Improvements to
                    212:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=compat_linux">linux emulation</a>
                    213:     enabling more applications to run.
1.6       tedu      214: <p>
                    215:
1.27      avsm      216: <li>Significant improvements to the
                    217:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=pthreads">pthreads(3)</a>
                    218:     library.
1.16      tedu      219: <p>
                    220:
1.20      deraadt   221: <li>Replace many static fd_set uses, to instead use
                    222:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=poll">poll(2)</a>
                    223: or dynamic allocation.
1.16      tedu      224: <p>
                    225:
1.31      tedu      226: <li>ANSIfication and stricter prototypes for a large portion of the source tree.
                    227: <p>
                    228:
1.13      david     229: <li>Legacy KerberosIV support has been removed, and the remaining KerberosV
                    230:     codebase has been restructured for easier management.
1.3       jason     231: <p>
                    232:
1.13      david     233: <li>Over 2400 ports, 2200 pre-built packages.
1.1       david     234: <p>
                    235:
                    236: <li>A large number of bug fixes, changes, and optimizations to our packet filter
1.20      deraadt   237:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=pf">pf(4)</a>
1.1       david     238:     including:
                    239: <ul>
1.20      deraadt   240: <li>packet tagging (e.g. filter on tags added by bridge based on MAC address)
1.10      frantzen  241: <li>stateful TCP normalization (prevent uptime calculation and NAT detection)
1.9       dhartmei  242: <li>passive OS detection (filter or redirect connections based on source OS)
                    243: <li>SYN proxy (protect servers against SYN flood attacks)
                    244: <li>adaptive state timeouts (prevent state table overflows under attack)
1.1       david     245: </ul>
                    246: <p>
                    247:
1.16      tedu      248: <li>Improved hardware support, including:
                    249: <ul>
1.31      tedu      250: <li>Kauai ATA controllers (Apple ATA100 wdc)
                    251:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=kauaiata&arch=macppc">
                    252:     kauaiata(4)</a> enabling support for Powerbook 12" and 17" models.
1.16      tedu      253: <li>Support for controlling LongRun registers on Transmeta CPUs.
1.19      tedu      254: <li>Many fixes to
                    255:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=aac">aac(4)</a>,
                    256:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=ahc">ahc(4)</a>,
                    257:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=osiop">osiop(4)</a>,
                    258:     and <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=siop">siop(4)</a>
                    259:     SCSI drivers.
                    260: <li>New
                    261:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=it">it(4)</a>,
1.31      tedu      262:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=lm">lm(4)</a>, and
                    263:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=viaenv">viaenv(4)</a>
1.19      tedu      264:     hardware monitor drivers.
                    265: <li>New
                    266:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=safe">safe(4)</a>
1.39      david     267:     driver for SafeNet crypto accelerators.
1.19      tedu      268: <li>New
                    269:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=mtd">mtd(4)</a>
                    270:     driver for Myson Technologies network cards.
                    271: <li>More ethernet cards supported by
1.31      tedu      272:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=sk">sk(4)</a>,
                    273:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=wi">wi(4)</a>,
                    274:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=fxp">fxp(4)</a>,
1.21      david     275:     and <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=dc&amp;sektion=4">dc(4)</a>.
1.19      tedu      276: <li>Massive overhaul and sync with NetBSD of the entire
1.21      david     277:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=usb&amp;sektion=4">usb(4)</a>
1.19      tedu      278:     support system.
                    279: <li>New and better support for various controllers in
                    280:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=pciide">pciide(4)</a>,
                    281:     including experimental support for Serial ATA.
1.31      tedu      282: <li>New drivers to support
                    283:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=mgx&arch=sparc">
1.32      tedu      284:     mgx(4)</a> and
1.31      tedu      285:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=pninek&arch=sparc">
1.32      tedu      286:     pninek(4)</a> SPARC framebuffers. The
1.31      tedu      287:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=vigra&arch=sparc">
1.32      tedu      288:     vigra(4)</a> driver also supports more models.
1.31      tedu      289: <li><a href="http://www.openbsd.org/cgi-bin/man.cgi?query=pcmcia">pcmcia(4)</a>
                    290:     support for Tadpole SPARCBooks and SPARCs with pcmcia-sbus bridges.
1.34      markus    291: <li>Watchdog support for
1.35      horacio   292:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=elansc&arch=i386">elansc(4)</a>
1.34      markus    293:     and
1.35      horacio   294:     <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=geodesc&arch=i386">geodesc(4)</a>
1.34      markus    295:     as used on Soekris boards.
1.16      tedu      296: </ul>
                    297: <p>
                    298:
1.1       david     299: <li>The system includes the following major components from outside suppliers:
                    300: <ul>
1.7       david     301: <li>XFree86 4.3.0 (+ patches, and i386 contains 3.3.X servers also, thus
                    302:     providing support for all chipsets)
1.1       david     303: <li>Gcc 2.95.3 (+ patches)
                    304: <li>Perl 5.8.0 (+ patches)
                    305: <li>Apache 1.3.28, mod_ssl 2.8.15, DSO support (+ patches)
1.30      david     306: <li>OpenSSL 0.9.7b (+ patches)
1.1       david     307: <li>Groff 1.15
1.37      david     308: <li>Sendmail 8.12.9 (+ parse8.359.2.8 security patch)
1.1       david     309: <li>Bind 9.2.2 (+ patches)
1.5       avsm      310: <li>Lynx 2.8.4rel.1 with HTTPS and IPv6 support (+ patches)
1.1       david     311: <li>Sudo 1.6.7p5
                    312: <li>Ncurses 5.2
                    313: <li>Latest KAME IPv6
                    314: <li>Heimdal 0.6rc1 (+ patches)
                    315: <li>Arla-current
1.36      david     316: <li>OpenSSH 3.7.1 (now with GSSAPI support)
1.1       david     317: </ul>
                    318: <p>
                    319:
                    320: <p>
                    321: <li>Many improvements for security and reliability (look for the red
1.38      david     322: print in the <a href="plus34.html">complete changelog</a>).
1.1       david     323: <p>
                    324: <li> and much more.
                    325:
                    326: </ul>
                    327:
                    328: <a name="install"></a>
                    329: <hr>
                    330: <p>
                    331: <h3><font color="#0000e0">How to install</font></h3>
                    332: <p>
                    333: Following this are the instructions which you would have on a piece of
                    334: paper if you had purchased a CDROM set instead of doing an alternate
                    335: form of install.  The instructions for doing an ftp (or other style
                    336: of) install are very similar; the CDROM instructions are left intact
                    337: so that you can see how much easier it would have been if you had
                    338: purchased a CDROM instead.
                    339: <p>
                    340:
                    341: <hr>
                    342: Please refer to the following files on the three CDROMs or ftp mirror for
                    343: extensive details on how to install OpenBSD 3.4 on your machine:
                    344: <p>
                    345: <ul>
1.8       david     346: <li>CD1:3.4/i386/INSTALL.i386
1.1       david     347: <p>
1.8       david     348: <li>CD2:3.4/macppc/INSTALL.macppc
                    349: <li>CD2:3.4/vax/INSTALL.vax
1.1       david     350: <p>
1.8       david     351: <li>CD3:3.4/sparc/INSTALL.sparc
                    352: <li>CD3:3.4/sparc64/INSTALL.sparc64
1.1       david     353: <p>
1.8       david     354: <li>FTP:.../OpenBSD/3.4/alpha/INSTALL.alpha
                    355: <li>FTP:.../OpenBSD/3.4/hp300/INSTALL.hp300
                    356: <li>FTP:.../OpenBSD/3.4/hppa/INSTALL.hppa
                    357: <li>FTP:.../OpenBSD/3.4/mac68k/INSTALL.mac68k
                    358: <li>FTP:.../OpenBSD/3.4/mvme68k/INSTALL.mvme68k
1.1       david     359: </ul>
                    360: <hr>
                    361:
                    362: <p>
                    363: Quick installer information for people familiar with OpenBSD, and the
                    364: use of the "disklabel -E" command.  If you are at all confused when
                    365: installing OpenBSD, read the relevant INSTALL.* file as listed above!
                    366: <p>
                    367:
                    368: <h3><font color="#e00000">OpenBSD/i386:</font></h3>
                    369: <ul>
                    370: Play with your BIOS options to enable booting from a CD. The OpenBSD/i386
                    371: release is on CD1. If your BIOS does not support booting from CD, you will need
                    372: to create a boot floppy to install from. To create a boot floppy write
                    373: <i>CD1:3.4/i386/floppy34.fs</i> to a floppy and boot via the floppy drive.
                    374:
                    375: <p>
                    376: Use <i>CD1:3.4/i386/floppyB34.fs</i> instead for greater scsi controller
                    377: support, or <i>CD1:3.4/i386/floppyC34.fs</i> for better laptop support.
                    378:
                    379: <p>
1.2       david     380: If you are planning on dual booting OpenBSD with another OS, you will need to
                    381: read the included INSTALL.i386 document.
1.1       david     382:
                    383: <p>
                    384: To make a boot floppy under MS-DOS, use the &quot;rawrite&quot; utility located
1.2       david     385: at <i>CD:/3.4/tools/rawrite.exe</i>. To make the boot floppy under a Unix OS,
                    386: use the <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=
                    387: dd&amp;sektion=1">dd(1)</a> utility. The following is an example usage of
                    388: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=dd&amp;sektion=1">dd(1)
                    389: </a>, where the device could be &quot;floppy&quot;, &quot;rfd0c&quot;, or
                    390: &quot;rfd0a&quot;.
1.1       david     391:
                    392: <ul><pre>
                    393: # <strong>dd if=&lt;file&gt; of=/dev/&lt;device&gt; bs=32k</strong>
                    394: </pre></ul>
                    395:
                    396: <p>
1.2       david     397: Make sure you use properly formatted perfect floppies with NO BAD BLOCKS or
                    398: your install will most likely fail. For more information on creating a boot
                    399: floppy and installing OpenBSD/i386 please refer to
                    400: <a href="faq/faq4.html#MkFlop">FAQ4.1</a>.
1.1       david     401: </ul>
                    402:
                    403: <p>
                    404: <h3><font color="#e00000">OpenBSD/macppc:</font></h3>
                    405: <ul>
                    406: Put the CD2 in your CDROM drive and poweron your machine while holding down the
                    407: <i>C</i> key until the display turns on and shows <i>OpenBSD/macppc boot</i>.
                    408:
                    409: <p>
                    410: Alternatively, at the Open Firmware prompt, enter <i>boot cd:,ofwboot
                    411: /3.4/macppc/bsd.rd</i>
                    412: </ul>
                    413:
                    414: <p>
                    415: <h3><font color="#e00000">OpenBSD/vax:</font></h3>
                    416: <ul>
                    417: Boot over the network via mopbooting as described in INSTALL.vax.
                    418: </ul>
                    419:
                    420: <p>
                    421: <h3><font color="#e00000">OpenBSD/sparc:</font></h3>
                    422: <ul>
1.2       david     423: The 3.4 release of OpenBSD/sparc is located on CD3. To boot off of this CD you
                    424: can use one of the two commands listed below, depending on the version of your
                    425: ROM.
1.1       david     426:
                    427: <ul><pre>
1.8       david     428: &gt; <strong>boot cdrom 3.4/sparc/bsd.rd</strong>
1.1       david     429: or
1.8       david     430: &gt; <strong>boot sd(0,6,0)3.4/sparc/bsd.rd</strong>
1.1       david     431: </pre></ul>
                    432:
                    433: <p>
                    434: If your sparc does not have a CD drive, you can alternatively boot from floppy.
1.2       david     435: To do so you need to write &quot;CD3:3.4/sparc/floppy34.fs&quot; to a floppy.
                    436: For more information see <a href="faq/faq4.html#MkFlop">FAQ4.1</a>. To boot from
                    437: the floppy use one of the two commands listed below, depending on the version of
                    438: your ROM.
1.1       david     439:
                    440: <ul><pre>
1.8       david     441: &gt; <strong>boot floppy</strong>
1.1       david     442: or
1.8       david     443: &gt; <strong>boot fd()</strong>
1.1       david     444: </pre></ul>
                    445:
                    446: <p>
1.2       david     447: Make sure you use a properly formatted floppy with NO BAD BLOCKS or your install
                    448: will most likely fail.
1.1       david     449:
                    450: <p>
                    451: If your sparc doesn't have a floppy drive nor a CD drive, you can either
                    452: setup a bootable tape, or install via network, as told in the
                    453: INSTALL.sparc file.
                    454: </ul>
                    455:
                    456: <p>
                    457: <h3><font color="#e00000">OpenBSD/sparc64:</font></h3>
                    458: <ul>
                    459: Put the CD3 in your CDROM drive and type <i>boot cdrom</i>.
                    460:
                    461: <p>
                    462: If this doesn't work, or if you don't have a CDROM drive, you can write
                    463: <i>CD3:3.4/sparc64/floppy34.fs</i> to a floppy and boot it with <i>boot
                    464: floppy</i>.<br>
1.2       david     465: Make sure you use a properly formatted floppy with NO BAD BLOCKS or your install
                    466: will most likely fail.
1.1       david     467:
                    468: <p>
                    469: You can also write <i>CD3:3.4/sparc64/miniroot34.fs</i> to the swap partition on
                    470: the disk and boot with <i>boot disk:b</i>.
                    471:
                    472: <p>
                    473: If nothing works, you can boot over the network as described in INSTALL.sparc64
                    474: </ul>
                    475:
                    476: <p>
                    477: <h3><font color="#e00000">OpenBSD/alpha:</font></h3>
                    478: <ul>
                    479: <p>Write <i>FTP:3.4/alpha/floppy34.fs</i> or
                    480: <i>FTP:3.4/alpha/floppyB34.fs</i> (depending on your machine) to a diskette and
                    481: enter <i>boot dva0</i>. Refer to INSTALL.alpha for more details.
                    482:
                    483: <p>
1.2       david     484: Make sure you use a properly formatted floppy with NO BAD BLOCKS or your install
                    485: will most likely fail.
1.1       david     486:
                    487: </ul>
                    488:
                    489: <p>
                    490: <h3><font color="#e00000">OpenBSD/hp300:</font></h3>
                    491: <ul>
                    492: <p>
                    493: Boot over the network by following the instructions in INSTALL.hp300.
                    494: </ul>
                    495:
                    496: <p>
                    497: <h3><font color="#e00000">OpenBSD/hppa:</font></h3>
                    498: <ul>
                    499: <p>
                    500: Boot over the network by following the instructions in INSTALL.hppa or the
                    501: <a href="hppa.html#netboot">hppa platform page</a>.
                    502: </ul>
                    503:
                    504: <p>
                    505: <h3><font color="#e00000">OpenBSD/mac68k:</font></h3>
                    506: <ul>
                    507: <p>
                    508: Boot MacOS as normal and partition your disk with the appropriate A/UX
                    509: configurations.  Then, extract the Macside utilities from
                    510: <i>FTP:3.4/mac68k/utils</i> onto your hard disk.  Run Mkfs to create your
                    511: filesystems on the A/UX partitions you just made.  Then, use the
                    512: "BSD/Mac68k Installer" to copy all the sets in <i>FTP:3.4/mac68k/</i> onto your
                    513: partitions.  Finally, you will be ready to configure the "BSD/Mac68k
                    514: Booter" with the location of your kernel and boot the system.
                    515: </ul>
                    516:
                    517: <p>
                    518: <h3><font color="#e00000">OpenBSD/mvme68k:</font></h3>
                    519: <ul>
                    520: <p>
                    521: You can create a bootable installation tape or boot over the network.<br>
                    522: The network boot requires a MVME68K BUG version that supports the <i>NIOT</i>
                    523: and <i>NBO</i> debugger commands. Follow the instructions in INSTALL.mvme68k
                    524: for more details.
                    525: </ul>
                    526:
                    527: <p>
                    528: <h3><font color="#e00000">Notes about the source code:</font></h3>
                    529: <ul>
                    530: src.tar.gz contains a source archive starting at /usr/src.  This file
                    531: contains everything you need except for the kernel sources, which are
                    532: in a separate archive.  To extract:
                    533: <p>
                    534: <ul><pre>
                    535: # <strong>mkdir -p /usr/src</strong>
                    536: # <strong>cd /usr/src</strong>
                    537: # <strong>tar xvfz /tmp/src.tar.gz</strong>
                    538: </pre></ul>
                    539: <p>
                    540: sys.tar.gz contains a source archive starting at /usr/src/sys.
                    541: This file contains all the kernel sources you need to rebuild kernels.
                    542: To extract:
                    543: <p>
                    544: <ul><pre>
                    545: # <strong>mkdir -p /usr/src/sys</strong>
                    546: # <strong>cd /usr/src</strong>
                    547: # <strong>tar xvfz /tmp/sys.tar.gz</strong>
                    548: </pre></ul>
                    549: <p>
                    550: Both of these trees are a regular CVS checkout.  Using these trees it
                    551: is possible to get a head-start on using the anoncvs servers as
                    552: described <a href="anoncvs.html">here</a>.
                    553: Using these files
                    554: results in a much faster initial CVS update than you could expect from
                    555: a fresh checkout of the full OpenBSD source tree.
                    556: <p>
                    557: </ul>
                    558: <a name="ports"></a>
                    559: <hr>
                    560: <p>
                    561: <h3><font color="#0000e0">Ports Tree</font></h3>
                    562: <p>
                    563: A ports tree archive is also provided.  To extract:
                    564: <p>
                    565: <ul><pre>
                    566: # <strong>cd /usr</strong>
                    567: # <strong>tar xvfz /tmp/ports.tar.gz</strong>
                    568: # <strong>cd ports</strong>
                    569: </pre></ul>
                    570: <p>
                    571: The <i>ports/</i> subdirectory is a checkout of the OpenBSD ports tree.  Go
                    572: read the <a href="ports.html">ports</a> page
                    573: if you know nothing about ports
                    574: at this point.  This text is not a manual of how to use ports.
                    575: Rather, it is a set of notes meant to kickstart the user on the
                    576: OpenBSD ports system.
                    577: <p>
                    578: The <i>ports/</i> directory represents a CVS (see the manpage for
                    579: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=cvs&amp;apropos=0&amp;sektion=1&amp;manpath=OpenBSD+Current&amp;arch=i386&amp;format=html">
                    580: cvs(1)</a> if
                    581: you aren't familiar with CVS) checkout of our ports.  As with our complete
                    582: source tree, our ports tree is available via anoncvs.  So, in
                    583: order to keep current with it, you must make the <i>ports/</i> tree
                    584: available on a read-write medium and update the tree with a command
                    585: like:
                    586: <p>
                    587: <ul><pre>
                    588: # <strong>cd [portsdir]/; cvs -d anoncvsserver.openbsd.org:/cvs update -Pd -rOPENBSD_3_4</strong>
                    589: </pre></ul>
                    590: <p>
                    591: [Of course, you must replace the local directory and server name here
                    592: with the location of your ports collection and a nearby anoncvs
                    593: server.]
                    594: <p>
                    595: Note that most ports are available as packages through ftp. Updated
                    596: packages for the 3.4 release will be made available if problems arise.
                    597: <p>
                    598: If you're interested in seeing a port added, would like to help out, or just
                    599: would like to know more, the mailing list ports@openbsd.org is a good
                    600: place to know.
                    601: <p>
                    602:
                    603: <hr>
                    604: <a href="index.html"><img height="24" width="24" src="back.gif" border="0"
                    605: alt="OpenBSD"></a>
                    606: <a href="mailto:www@openbsd.org">www@openbsd.org</a>
                    607: <br><small>
1.42    ! david     608: $OpenBSD: 34.html,v 1.41 2005/04/19 17:38:56 deraadt Exp $
1.1       david     609: </small>
                    610:
                    611: </body>
                    612: </html>