-
Notifications
You must be signed in to change notification settings - Fork 42
/
55.html
1119 lines (1022 loc) · 51 KB
/
55.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang=en id=release>
<meta charset=utf-8>
<title>OpenBSD 5.5</title>
<meta name="description" content="OpenBSD 5.5">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="openbsd.css">
<link rel="canonical" href="https://www.openbsd.org/55.html">
<h2 id=OpenBSD>
<a href="index.html">
<i>Open</i><b>BSD</b></a>
5.5
</h2>
<table>
<tr>
<td>
<a href="images/McFishy.jpg">
<img width="227" height="343" src="images/McFishy.jpg" alt="McFishy"></a>
<td>
Released May 1, 2014<br>
Copyright 1997-2014, Theo de Raadt.<br>
<cite class=isbn>ISBN 978-0-9881561-3-5</cite>
<br>
5.5 Song: <a href="lyrics.html#55">"Wrap in Time"</a>
<br>
<br>
<ul>
<li>See the information on <a href="ftp.html">the FTP page</a> for
a list of mirror machines.
<li>Go to the <code class=reldir>pub/OpenBSD/5.5/</code> directory on
one of the mirror sites.
<li>Have a look at <a href="errata55.html">the 5.5 errata page</a> for a list
of bugs and workarounds.
<li>See a <a href="plus55.html">detailed log of changes</a> between the
5.4 and 5.5 releases.
<p>
<li><a href="https://man.openbsd.org/signify.1">signify(1)</a>
pubkeys for this release:<p>
<table class=signify>
<tr><td>
openbsd-55-base.pub:
<td>
RWRGy8gxk9N9314J0gh9U02lA7s8i6ITajJiNgxQOndvXvM5ZPX+nQ9h
<tr><td>
openbsd-55-fw.pub:
<td>
RWTdVOhdk5qyNktv0iGV6OpaVfogGxTYc1bbkaUhFlExmclYvpJR/opO
<tr><td>
openbsd-55-pkg.pub:
<td>
RWQQC1M9dhm/tja/ktitJs/QVI1kGTQr7W7jtUmdZ4uTp+4yZJ6RRHb5
</table>
</ul>
<p>
All applicable copyrights and credits are in the src.tar.gz,
sys.tar.gz, xenocara.tar.gz, ports.tar.gz files, or in the
files fetched via <code>ports.tar.gz</code>.
</table>
<hr>
<section id=new>
<h3>What's New</h3>
<p>
This is a partial list of new features and systems included in OpenBSD 5.5.
For a comprehensive list, see the <a href="plus55.html">changelog</a> leading
to 5.5.
<ul>
<li>time_t is now 64 bits on all platforms.
<ul>
<li>From OpenBSD 5.5 onwards, OpenBSD is year 2038 ready and will run well beyond Tue Jan 19 03:14:07 2038 UTC.
<li>The entire source tree (kernel, libraries, and userland programs) has been carefully and comprehensively audited to support 64-bit time_t.
<li>Userland programs that were changed include
<a href="https://man.openbsd.org/arp.8">arp(8)</a>,
<a href="https://man.openbsd.org/bgpd.8">bgpd(8)</a>,
<a href="https://man.openbsd.org/calendar.8">calendar(8)</a>,
<a href="https://man.openbsd.org/cron.8">cron(8)</a>,
<a href="https://man.openbsd.org/find.1">find(1)</a>,
<a href="https://man.openbsd.org/fsck_ffs.8">fsck_ffs(8)</a>,
<a href="https://man.openbsd.org/ifconfig.8">ifconfig(8)</a>,
<a href="https://man.openbsd.org/ksh.1">ksh(1)</a>,
<a href="https://man.openbsd.org/ld.1">ld(1)</a>,
<a href="https://man.openbsd.org/ld.so.1">ld.so(1)</a>,
<a href="https://man.openbsd.org/netstat.1">netstat(1)</a>,
<a href="https://man.openbsd.org/pfctl.8">pfctl(8)</a>,
<a href="https://man.openbsd.org/ping.8">ping(8)</a>,
<a href="https://man.openbsd.org/rtadvd.8">rtadvd(8)</a>,
<a href="https://man.openbsd.org/ssh.1">ssh(1)</a>,
<a href="https://man.openbsd.org/tar.1">tar(1)</a>,
<a href="https://man.openbsd.org/tmux.1">tmux(1)</a>,
<a href="https://man.openbsd.org/top.1">top(1)</a>,
and many others, including games!
<li>Removed time_t from network, on-disk, and database formats.
<li>Removed as many (time_t) casts as possible.
<li>Format strings were converted to use %lld and (long long) casts.
<li>Uses of timeval were converted to timespec where possible.
<li>Parts of the system that could not use 64-bit time_t were converted to use unsigned 32-bit instead, so they are good till the year 2106.
<li>Numerous ports throughout the ports tree received time_t fixes.
</ul>
<p>
<li>Releases and packages are now cryptographically signed with the
<a href="https://man.openbsd.org/signify.1">signify(1)</a> utility.
<ul>
<li>The installer will verify all sets before installing.
<li>Installing without verification works, but is discouraged.
<li>Users are advised to verify the installer (bsd.rd, install55.iso, etc.)
ahead of time using the
<a href="https://man.openbsd.org/signify.1">signify(1)</a> tool if available.
<li><a href="https://man.openbsd.org/pkg_add.1">pkg_add(1)</a> now only trusts signed packages by default.
</ul>
<p>
<li>Installer improvements:
<ul>
<li>The installer now supports a scriptable
<a href="https://man.openbsd.org/autoinstall.8">auto-installation</a>
method that enables unattended installation and upgrades using a response file.
<li>Disk images which can be written to a USB flash drive
(miniroot55.fs [bsd.rd only] and install55.fs [bsd.rd + unsigned sets])
are now provided for amd64 and i386.
<li>Rewritten
<a href="https://man.openbsd.org/installboot.8">installboot(8)</a>
utility aiming for a unified implementation across platforms (currently
used by amd64 and i386 only).
<li>The installer now parses nwids with embedded blanks correctly.
</ul>
<p>
<li>New/extended platforms:
<ul>
<li><a href="alpha.html">OpenBSD/alpha</a>:
<ul>
<li>Multiprocessor support.
</ul>
<li><a href="aviion.html">OpenBSD/aviion</a>:
<ul>
<li>First self-hosting release for 88100-based AViiON systems.
</ul>
<li><a href="armv7.html">OpenBSD/armv7</a> replaces OpenBSD/beagle.
</ul>
<p>
<li>Improved hardware support, including:
<ul>
<li>New <a href="https://man.openbsd.org/vmx.4">vmx(4)</a>
driver for VMware VMXNET3 Virtual Interface Controller devices.
<li>New <a href="https://man.openbsd.org/vmwpvs.4">vmwpvs(4)</a>
driver for VMware Paravirtual SCSI.
<li>New <a href="https://man.openbsd.org/vioscsi.4">vioscsi(4)</a>
driver for VirtIO SCSI adapters.
<li>New <a href="https://man.openbsd.org/viornd.4">viornd(4)</a>
driver for VirtIO random number devices.
<li>New <a href="https://man.openbsd.org/ubcmtp.4">ubcmtp(4)</a>
driver for Broadcom multi-touch trackpads found on newer Apple MacBook,
MacBook Pro, and MacBook Air laptops.
<li>New <a href="https://man.openbsd.org/ugold.4">ugold(4)</a>
driver for TEMPer gold HID thermometers.
<li>New <a href="https://man.openbsd.org/ugl.4">ugl(4)</a>
driver for Genesys Logic based USB host-to-host adapters.
<li> New <a href="https://man.openbsd.org/qle.4">qle(4)</a> driver for QLogic Fibre Channel HBAs.
<li><a href="https://man.openbsd.org/radeondrm.4">radeondrm(4)</a>
has been overhauled, including:
<ul>
<li>New port of the Radeon code in Linux 3.8.13.19.
<li>Support for Kernel Mode Setting (KMS) including support for
additional output types such as DisplayPort.
<li><a href="https://man.openbsd.org/wsdisplay.4">wsdisplay(4)</a>
now attaches to
<a href="https://man.openbsd.org/radeondrm.4">radeondrm(4)</a>
and provides a framebuffer console.
</ul>
<li><a href="https://man.openbsd.org/inteldrm.4">inteldrm(4)</a>
has been updated to Linux 3.8.13.19 notably bringing Haswell stability fixes.
<li>Support for Intel 8 Series Ethernet with i217/i218 PHYs, and
i210/i211/i354 has been added to
<a href="https://man.openbsd.org/em.4">em(4)</a>.
<li>Support for Intel Centrino Wireless-N 2200, 2230 and 105/135 has been added to
<a href="https://man.openbsd.org/iwn.4">iwn(4)</a>.
<li>Support for Areca ARC-1880, ARC-1882, ARC-1883, ARC-1223, ARC-1214, ARC-1264, and ARC-1284 has been added to
<a href="https://man.openbsd.org/arc.4">arc(4)</a>.
<li>Support for Elantech v2 touchpads in <a href="https://man.openbsd.org/pms.4">pms(4)</a> has been fixed.
<li>Support for 802.11a (5Ghz) has been added to <a href="https://man.openbsd.org/wpi.4">wpi(4)</a>.
<li>Workarounds for firmware stability issues have been added to
<a href="https://man.openbsd.org/wpi.4">wpi(4)</a>,
<a href="https://man.openbsd.org/iwi.4">iwi(4)</a>, and
<a href="https://man.openbsd.org/iwn.4">iwn(4)</a>.
<li>Support for RT3572 chips has been added to the
<a href="https://man.openbsd.org/ral.4">ral(4)</a> driver.
<li>Support for RTL8106E chips has been added to the
<a href="https://man.openbsd.org/re.4">re(4)</a> driver.
<li>Support for RTS5229 card readers has been added to <a href="https://man.openbsd.org/rtsx.4">rtsx(4)</a>.
<li>Support for Microsoft XBox 360 controllers has been added to the <a href="https://man.openbsd.org/uhid.4">uhid(4)</a> driver.
<li>Support for CoreChip RD9700 USB Ethernet devices has been added to the <a href="https://man.openbsd.org/udav.4">udav(4)</a> driver.
<li>Further reliability improvements regarding suspend/resume and hibernation.
<li>Enabled IPv6 transmit TCP/UDP checksum offload in
<a href="https://man.openbsd.org/jme.4">jme(4)</a>.
</ul>
<p>
<li>Generic network stack improvements:
<ul>
<li>Added <a href="https://man.openbsd.org/vxlan.4">vxlan(4)</a>,
a virtual extensible local area network tunnel interface.
<li><a href="https://man.openbsd.org/pflow.4">pflow(4)</a>
now sends 64 bit time values for pflowproto 10. The changed templates /
flows for pflowproto 10 are now parsable by existing receivers.
<li>Continued improvement of the checksum offload framework to streamline
the calculation of TCP, UDP, ICMP, and ICMPv6 checksums.
<li>Enabled IPv6 routing domain support.
</ul>
<p>
<li>Routing daemons and other userland network improvements:
<ul>
<li>The popa3d POP3 server has been removed.
<li>Added <a href="https://man.openbsd.org/ntpctl.8">ntpctl(8)</a>,
a program to control the Network Time Protocol daemon.
<li><a href="https://man.openbsd.org/slowcgi.8">slowcgi(8)</a>
now works with a high number of concurrent connections.
<li>The inetd-based identd has been replaced by a new libevent-based
<a href="https://man.openbsd.org/identd.8">identd(8)</a>.
<li><a href="https://man.openbsd.org/tcpdump.8">tcpdump(8)</a>
can now detect bad ICMP and ICMPv6 checksums when used with the -v flag.
<li>Added rdomain support to IPv6 configuration tools
<a href="https://man.openbsd.org/ndp.8">ndp(8)</a>,
<a href="https://man.openbsd.org/rtsold.8">rtsold(8)</a>,
<a href="https://man.openbsd.org/ping6.8">ping6(8)</a>, and
<a href="https://man.openbsd.org/traceroute6.8">traceroute6(8)</a>.
<li>Added SNMPv2 client support to
<a href="https://man.openbsd.org/snmpctl.8">snmpctl(8)</a>
("get", "walk", and "bulkwalk").
<li><a href="https://man.openbsd.org/relayd.8">relayd(8)</a>
now supports TLS Perfect Forward Secrecy (PFS) with ECDHE (Elliptic curve Diffie-Hellman) that is enabled by default.
</ul>
<p>
<li><a href="https://man.openbsd.org/pf.4">pf(4)</a> improvements:
<ul>
<li>New queueing system with new syntax.
<li>The "received-on" parameter can now be used with the "any" keyword to
match any existing interface except loopback ones.
<li>The block policy in the default <a href="https://man.openbsd.org/pf.conf.5">pf.conf(5)</a> is now "block return".
</ul>
<p>
<li><a href="https://man.openbsd.org/dhcpd.8">dhcpd(8)</a> and <a href="https://man.openbsd.org/dhclient.8">dhclient(8)</a> improvements:
<ul>
<li>No longer create a route to the bound address via 127.0.0.1.
<li>The options 'dhcp-lease-time', 'dhcp-rebinding-time', and 'dhcp-renewal-time' can now be configured in <a href="https://man.openbsd.org/dhclient.conf.5">dhclient.conf(5)</a>.
<li>'next-server' (a.k.a. siaddr) info now saved in lease files.
<li>Fall back to broadcasting when unicast renewal fails, as specified in
RFC 2131 and friends.
<li>Fix various problems in communications between privileged and non-privileged processes.
<li>Fix many abuses of memcpy.
<li>Stop pretending we still support FDDI or token ring hardware types.
<li>Fix classless static routes option handling and add syntax to parse human-readable forms.
<li>Fix 'effective' lease created by '-L' to have correct address, 'next_server', 'timestamp', and 'resolv_conf' fields.
<li>Fix handling of non-printable characters in lease file strings.
<li>Fix many edge cases in config file and lease parsing and ensure that error messages refer to the correct position in erroneous line.
<li><a href="https://man.openbsd.org/dhclient.conf.5">dhclient.conf(5)</a> can now override anything in an offer or saved lease when creating the effective lease. In particular, 'fixed-address', 'next-server', 'filename' and 'server-name'.
<li>Fix parsing of <a href="https://man.openbsd.org/dhclient.conf.5">dhclient.conf(5)</a> statements 'fixed-address' and
'next-server'.
<li>Log failures to fchmod() or fchown() files being written.
<li>Create lease files with permissions 0640.
<li>Fix possible failure to write <a href="https://man.openbsd.org/resolv.conf.5">resolv.conf(5)</a> when -L is used.
<li>'send dhcp-client-identifier "";' in <a href="https://man.openbsd.org/dhclient.conf.5">dhclient.conf(5)</a> will result in no 'dhcp-client-identifier' (option 61) being sent.
</ul>
<p>
<li><a href="https://man.openbsd.org/iked.8">iked(8)</a> improvements:
<ul>
<li>Support for OCSP ("Online Certificate Status Protocol"); enable with "set ocsp <em>URL</em>".
<li>Support for RSA public key authentication as an alternative to X.509 certificates or pre-shared keys.
<li>Support for DPD ("Dead Peer Detection") similar to the implementation in
<a href="https://man.openbsd.org/isakmpd.8">isakmpd(8)</a>.
<li>Support for dynamic IP address assignment from a pool in configuration mode; enabled with "config address <em>net/pool-prefix</em>".
<li>Initial support for IPComp.
<li>Various improvements and a thorough audit of the network input path.
</ul>
<p>
<li>OpenSMTPD 5.4.2 (includes changes to 5.4.1):
<ul>
<li>Introduce initial support for DSN extension:
<ul>
<li>NOTIFY=SUCCESS, NOTIFY=FAILURE, NOTIFY=DELAY, NOTIFY=NEVER
<li>RET=HDRS, RET=FULL
</ul>
<li>Introduce initial support for ENHANCEDSTATUSCODES extension:
<ul>
<li>smtp process returns Enhanced Status Codes for most commands.
<li>other processes now have an API to return more precise codes ...
<li>... which will be improved further with each version.
</ul>
<li>Improved <a href="https://man.openbsd.org/smtpctl.8">smtpctl(8)</a>:
<ul>
<li>sendmail mode now supports DSN parameters
<li>Can now pause/resume a source address -> destination domain route.
<li>Can now display status of processes with smtpctl show status.
<li>show relays: displays list of currently active relays.
<li>show routes: displays status of routes currently known by smtpd.
<li>show hosts: displays list of known remote MX.
<li>show hoststats: display status of last delivery for active domains.
<li>resume route: resumes route temporarily disable by the MTA.
<li>pause/resume envelope: allows pausing individual envelopes.
<li>pause/resume message: allows pausing individual messages.
<li>encrypt: allows generating credentials suitable for authentication.
<li>show message/envelope is now compression/encryption aware.
</ul>
<li>Introduced SNI support.
<li>Improved configuration file:
<ul>
<li>Removed last known ambiguity in grammar.
<li>Much simpler configuration for TLS-enabled hosts.
<li>Most parameters are now swappable in listen and accept rules.
<li>Conditions may be negated (ie: accept from ! <trusted> ...)
<li>Forward-only rules can be declared to impose ~/.forward files.
<li>New "recipient" keyword allows accept rule to provide a whitelist.
<li>Sender and recipient tables accept wildcard in their domains.
</ul>
<li>TLS generic improvements:
<ul>
<li>Support for TLS Perfect Forward Secrecy.
<li>Support for providing custom CA certificates.
</ul>
<li>MTA improvements:
<ul>
<li>mta may now require remote hosts to present valid certificates.
<li>Always attempt TLS before falling back to plaintext.
<li>Always present certificate if one is available.
<li>AUTH LOGIN now supported.
<li>MTA can now specify a EHLO-hostname when relaying.
</ul>
<li>SMTP server improvements:
<ul>
<li>IPv4-only and IPv6-only listeners are now possible.
<li>Listeners may now hide the From part in a Received-line.
<li>Listeners may require clients to provide a valid certificate.
<li>Banner hostname can now be dynamically fetched from a table.
</ul>
<li>Queue improvements:
<ul>
<li>Introduce an envelope cache in the queue to improve disk-IO pattern.
</ul>
<li>Documentation:
<ul>
<li><a href="https://man.openbsd.org/table.5">table(5)</a> describes format for static, file and db backends.
<li>sendmail(8) describes our "sendmail" interface.
</ul>
<li>Reduced memory usage in both general and stressed cases.
<li>OpenSMTPD now automagically upgrades queue if the format changes!
<li>Support Qmail-like "sticky home".
<li>Support for authenticating users from a credentials table.
<li>Introduce <a href="https://man.openbsd.org/passwd.5">passwd(5)</a> table backend for user and credentials lookup.
<li>Expansion variables in ~/.forward now support modifiers.
<li>Much more efficient scheduler!
<li>Many documentation fixes and improvements.
<li>And a lot of minor bug fixes and internal cleanup!
</ul>
<p>
<li>Security improvements:
<ul>
<li>Position-independent executables (PIE) are now used by default on i386.
<li>The <a href="https://man.openbsd.org/arc4random.3">arc4random(3)</a>
functions now use the ChaCha20 cipher.
<li>The kernel random number system is initially seeded by the bootloader,
providing better random very early.
<li>Kernel stack protector is also seeded via the same mechanism, providing
protection earlier.
<li>-Wbounded is now enabled in GCC by default.
<li>Added <a href="https://man.openbsd.org/explicit_bzero.3">explicit_bzero(3)</a>.
</ul>
<p>
<li>Performance improvements:
<ul>
<li>Relations between the buffer cache and swap daemon have been improved.
</ul>
<p>
<li>Threading improvements:
<ul>
<li>Interprocess semaphores via <a href="https://man.openbsd.org/sem_open.3">sem_open(3)</a>.
<li>Running threaded processes under a debugger no longer causes panics.
<li>SIGPROF and SIGVTALRM are now reliably delivered to the thread that was running when they were triggered.
<li>Thread stacks now have a random bias.
<li><a href="https://man.openbsd.org/fork.2">fork(2)</a> no longer changes the pthread_t of the forking thread in the child.
<li>Signaling races eliminated from <a href="https://man.openbsd.org/pthread_kill.3">pthread_kill(3)</a> and <a href="https://man.openbsd.org/pthread_cancel.3">pthread_cancel(3)</a>.
</ul>
<p>
<li>Assorted improvements:
<ul>
<li>New in-memory file system, <a href="https://man.openbsd.org/mount_tmpfs.8">tmpfs</a>.
<li>Many <a href="https://man.openbsd.org/fuse.4">fuse(4)</a> improvements and stability fixes.
<li>Added POSIX-required <a href="https://man.openbsd.org/nl.1">nl(1)</a> utility.
<li>OpenBSD/vax has switched to GCC 3.
<li>Replaced <a href="https://man.openbsd.org/OpenBSD+5.4/getdirentries.2">getdirentries(2)</a> with <a href="https://man.openbsd.org/getdents.2">getdents(2)</a>, vastly improving the performance and memory usage of <a href="https://man.openbsd.org/telldir.3">telldir(3)</a>.
<li>amd64 and i386 now use the MWAIT instruction for their idle loop where available to reduce latency.
<li>Added support for CLOCK_UPTIME.
<li>Added <a href="https://man.openbsd.org/tcgetsid.3">tcgetsid(3)</a>.
<li>clock_t is now a 64 bit type, so it no longer wraps around in only 248 days.
<li>ino_t is now a 64 bit type, mostly to support large NFS filesystems.
<li>Corrected handling of UTIME_OMIT.
<li><a href="https://man.openbsd.org/pax.1">pax(1)</a> now sets the mode and timestamps correctly on symlinks, and makes hardlinks to symlinks when requested.
<li>Corrected handling of shared library destructors when libc is statically linked.
<li>Corrected various disk drivers to handle non-512-byte sectors and disk sizes greater than 32-bits.
<li>Corrected <a href="https://man.openbsd.org/growfs.8">growfs(8)</a> to handle non-512-byte sectors and disk sizes greater than 32-bits.
<li>All CIRCLEQ uses replaced with TAILQ.
<li>Preserve and honour changes to the OpenBSD bounds in a disklabel.
<li><a href="https://man.openbsd.org/fdisk.8">fdisk(8)</a> now always writes a good signature when the MBR is written to disk.
<li><a href="https://man.openbsd.org/disklabel.8">disklabel(8)</a> now writes the disklabel to the correct location on non-512-byte sector devices.
<li>Fix <a href="https://man.openbsd.org/athn.4">athn(4)</a> tick calculations to eliminate excessive timeouts.
<li>Allow <a href="https://man.openbsd.org/disklabel.8">disklabel(8)</a> to set any partition, including 'C', to type UNUSED.
<li>New <a href="https://man.openbsd.org/sha512.1">sha512(1)</a> tool to calculate and verify the SHA-512 checksums of files.
<li><a href="https://man.openbsd.org/sha256.1">sha256(1)</a> and related tools
(<a href="https://man.openbsd.org/cksum.1">cksum(1)</a>,
<a href="https://man.openbsd.org/md5.1">md5(1)</a>,
<a href="https://man.openbsd.org/sha1.1">sha1(1)</a>, and
<a href="https://man.openbsd.org/sha512.1">sha512(1)</a>)
now support a new -h flag to place the checksum into a specified hash file instead of stdout.
<li><a href="https://man.openbsd.org/sha256.1">sha256(1)</a> and related tools now support a new -C flag that allows the verification of selected files in a checklist.
<li><a href="https://man.openbsd.org/sha256.1">sha256(1)</a> and related tools will now print MISSING if they encounter non-existent files in a checklist.
<li>i386 and amd64 platforms can now boot from keydisk-based <a href="https://man.openbsd.org/softraid.4">softraid(4)</a> crypto volumes.
<li>Allow <a href="https://man.openbsd.org/softraid.4">softraid(4)</a> to work with partitions larger than 2TB.
<li>Removed experimental RAID 4 support from <a href="https://man.openbsd.org/softraid.4">softraid(4)</a>.
<li>Added experimental support for rebuilding RAID 5 <a href="https://man.openbsd.org/softraid.4">softraid(4)</a> volumes. Lots of testing is still required and there is missing functionality, such as the ability to resume a partially completed rebuild. <a href="https://man.openbsd.org/bioctl.8">bioctl(8)</a> refuses to create RAID 5 volumes unless recompiled with -DRAID5.
<li>The uhts(4) driver has been merged into
<a href="https://man.openbsd.org/ums.4">ums(4)</a>.
<li>Many new checks were added to portcheck(1) <!-- no href to man.cgi due to the fact it doesn't show stuff under /usr/ports/infrastructure/man --> utility; now it catches almost every popular mistake that observed in ports in last years.
</ul>
<p>
<li>OpenSSH 6.6 (including changes to 6.5, a feature-focused release):
<ul>
<li>Security:
<ul>
<li><a href="https://man.openbsd.org/sshd.8">sshd(8)</a>:
when using environment passing with a
<a href="https://man.openbsd.org/sshd_config.5">sshd_config(5)</a>
<code>AcceptEnv</code> pattern with a wildcard. OpenSSH prior to 6.6 could
be tricked into accepting any environment variable that contains the
characters before the wildcard character.
</ul>
<li>New/changed features:
<ul>
<li><a href="https://man.openbsd.org/ssh.1">ssh(1)</a>,
<a href="https://man.openbsd.org/sshd.8">sshd(8)</a>:
Add support for key exchange using <i>elliptic-curve Diffie Hellman</i>
in Daniel Bernstein's <i>Curve25519</i>. This key exchange method is
the default when both the client and server support it.
<li><a href="https://man.openbsd.org/ssh.1">ssh(1)</a>,
<a href="https://man.openbsd.org/sshd.8">sshd(8)</a>:
Add support for <i>ED25519</i> as a public key type. ED25519 is
a elliptic curve signature scheme that offers better security than
<i>ECDSA</i> and <i>DSA</i> and good performance. It may be used for
both <i>user</i> and <i>host</i> keys.
<li>Add a new private key format that uses a <i>bcrypt KDF</i> to better
protect keys at rest. This format is used unconditionally for
ED25519 keys, but may be requested when generating or saving
existing keys of other types via the <code>-o</code>
<a href="https://man.openbsd.org/ssh-keygen.1">ssh-keygen(1)</a>
option. We intend to make the new format the default in the near
future. Details of the new format are in the <code>PROTOCOL.key</code>
file.
<li><a href="https://man.openbsd.org/ssh.1">ssh(1)</a>,
<a href="https://man.openbsd.org/sshd.8">sshd(8)</a>:
Add a new transport cipher "[email protected]" that
combines Daniel Bernstein's <i>ChaCha20</i> stream cipher and
<i>Poly1305 MAC</i> to build an authenticated encryption mode. Details
are in the <code>PROTOCOL.chacha20poly1305</code> file.
<li><a href="https://man.openbsd.org/ssh.1">ssh(1)</a>,
<a href="https://man.openbsd.org/sshd.8">sshd(8)</a>:
Refuse <i>RSA</i> keys from old proprietary clients and servers that
use the obsolete <i>RSA+MD5</i> signature scheme. It will still be
possible to connect with these clients/servers but <b>only DSA keys
will be accepted, and OpenSSH will refuse connection entirely in a
future release</b>.
<li><a href="https://man.openbsd.org/ssh.1">ssh(1)</a>,
<a href="https://man.openbsd.org/sshd.8">sshd(8)</a>:
Refuse old proprietary clients and servers that use a weaker key
exchange hash calculation.
<li><a href="https://man.openbsd.org/ssh.1">ssh(1)</a>:
Increase the size of the <i>Diffie-Hellman groups</i> requested for
each symmetric key size. New values from <i>NIST Special Publication
800-57</i> with the upper limit specified by <i>RFC 4419</i>.
<li><a href="https://man.openbsd.org/ssh.1">ssh(1)</a>,
<a href="https://man.openbsd.org/ssh-agent.1">ssh-agent(1)</a>:
Support <i>PKCS#11</i> tokens that only provide <i>X.509</i> certs
instead of raw public keys. (requested as bz#1908)
<li><a href="https://man.openbsd.org/ssh.1">ssh(1)</a>:
Add a
<a href="https://man.openbsd.org/ssh_config.5">ssh_config(5)</a>
<code>Match</code> keyword that allows conditional configuration to be
applied by matching on <i>hostname</i>, <i>user</i> and <i>result of
arbitrary commands</i>.
<li><a href="https://man.openbsd.org/ssh.1">ssh(1)</a>:
Add support for <i>client-side hostname canonicalisation</i> using a
set of <i>DNS suffixes</i> and rules in
<a href="https://man.openbsd.org/ssh_config.5">ssh_config(5)</a>.
This allows unqualified names to be canonicalised to fully-qualified
domain names to eliminate ambiguity when looking up keys in
<code>known_hosts</code> or checking host certificate names.
<li><a href="https://man.openbsd.org/sftp-server.8">sftp-server(8)</a>:
Add the ability to whitelist and/or blacklist sftp protocol requests by
name.
<li><a href="https://man.openbsd.org/sftp-server.8">sftp-server(8)</a>:
Add a sftp "[email protected]" to support calling
<a href="https://man.openbsd.org/fsync.2">fsync(2)</a>
on an open file handle.
<li><a href="https://man.openbsd.org/sshd.8">sshd(8)</a>:
Add a
<a href="https://man.openbsd.org/ssh_config.5">ssh_config(5)</a>
<code>PermitTTY</code> to disallow <i>TTY</i> allocation, mirroring the
longstanding <code>no-pty</code> <code>authorized_keys</code> option.
<li><a href="https://man.openbsd.org/ssh.1">ssh(1)</a>:
Add a
<a href="https://man.openbsd.org/ssh_config.5">ssh_config(5)</a>
<code>ProxyUseFDPass</code> option that supports the use of
<code>ProxyCommands</code> that establish a connection and then pass a
connected file descriptor back to
<a href="https://man.openbsd.org/ssh.1">ssh(1)</a>.
This allows the <code>ProxyCommand</code> to exit rather than staying
around to transfer data.
<li><a href="https://man.openbsd.org/ssh.1">ssh(1)</a>,
<a href="https://man.openbsd.org/sshd.8">sshd(8)</a>:
this release removes the <i>J-PAKE</i> authentication code. This code
was experimental, never enabled and had been unmaintained for some
time.
<li><a href="https://man.openbsd.org/ssh.1">ssh(1)</a>:
when processing <code>Match</code> blocks, skip '<code>exec</code>' clauses
other clauses predicates failed to match.
<li><a href="https://man.openbsd.org/ssh.1">ssh(1)</a>:
if hostname canonicalisation is enabled and results in the destination
hostname being changed, then re-parse
<a href="https://man.openbsd.org/ssh_config.5">ssh_config(5)</a>
files using the new destination hostname. This gives '<code>Host</code>'
and '<code>Match</code>' directives that use the expanded hostname a chance
to be applied.
</ul>
<li>The following significant bugs have been fixed in this release:
<ul>
<li><a href="https://man.openbsd.org/ssh.1">ssh(1)</a>,
<a href="https://man.openbsd.org/sshd.8">sshd(8)</a>:
Fix potential stack exhaustion caused by nested certificates.
<li><a href="https://man.openbsd.org/ssh.1">ssh(1)</a>:
make <code>BindAddress</code> work with <code>UsePrivilegedPort</code>.
(bz#1211)
<li><a href="https://man.openbsd.org/sftp.1">sftp(1)</a>:
fix the progress meter for resumed transfer. (bz#2137)
<li><a href="https://man.openbsd.org/ssh-add.1">ssh-add(1)</a>:
do not request smartcard PIN when removing keys from
<a href="https://man.openbsd.org/ssh-agent.1">ssh-agent(1)</a>.
(bz#2187)
<li><a href="https://man.openbsd.org/sshd.8">sshd(8)</a>:
fix re-exec fallback when original
<a href="https://man.openbsd.org/sshd.8">sshd(8)</a>
binary cannot be executed. (bz#2139)
<li><a href="https://man.openbsd.org/ssh-keygen.1">ssh-keygen(1)</a>:
Make relative-specified certificate expiry times relative to current
time and not the validity start time.
<li><a href="https://man.openbsd.org/sshd.8">sshd(8)</a>:
fix <code>AuthorizedKeysCommand</code> inside a <code>Match</code> block.
(bz#2161)
<li><a href="https://man.openbsd.org/sftp.1">sftp(1)</a>:
symlinking a file would incorrectly canonicalise the target path.
(bz#2129)
<li><a href="https://man.openbsd.org/ssh-agent.1">ssh-agent(1)</a>:
fix a use-after-free in the PKCS#11 agent helper executable.
(bz#2175)
<li><a href="https://man.openbsd.org/sshd.8">sshd(8)</a>:
Improve logging of sessions to include the <i>user name</i>, <i>remote
host</i> and <i>port</i>, the <i>session type</i> (shell, command,
etc.) and <i>allocated TTY</i> (if any).
<li><a href="https://man.openbsd.org/sshd.8">sshd(8)</a>:
tell the client (via a debug message) when their preferred listen
address has been overridden by the server's <code>GatewayPorts</code>
setting. (bz#1297)
<li><a href="https://man.openbsd.org/sshd.8">sshd(8)</a>:
include report port in bad protocol banner message. (bz#2162)
<li><a href="https://man.openbsd.org/sftp.1">sftp(1)</a>:
fix memory leak in error path in <i>do_readdir()</i>. (bz#2163)
<li><a href="https://man.openbsd.org/sftp.1">sftp(1)</a>:
don't leak file descriptor on error. (bz#2171)
<li><a href="https://man.openbsd.org/sshd.8">sshd(8)</a>:
include the <i>local address</i> and <i>port</i> in
"<code>Connection from ...</code>" message.
(only shown at <i>loglevel>=verbose</i>)
<li><a href="https://man.openbsd.org/ssh.1">ssh(1)</a>:
avoid spurious "<code>getsockname failed: Bad file descriptor</code>" in
<code>ssh -W</code>. (bz#2200, debian#738692)
<li><a href="https://man.openbsd.org/sshd.8">sshd(8)</a>:
allow the
<a href="https://man.openbsd.org/shutdown.2">shutdown(2)</a>
syscall in seccomp-bpf and systrace sandbox modes, as it is reachable
if the connection is terminated during the pre-auth phase.
<li><a href="https://man.openbsd.org/ssh.1">ssh(1)</a>,
<a href="https://man.openbsd.org/sshd.8">sshd(8)</a>:
fix unsigned overflow that in <i>SSH protocol 1 bignum parsing</i>.
Minimum key length checks render this bug unexploitable to compromise
SSH 1 sessions.
<li><a href="https://man.openbsd.org/sshd_config.5">sshd_config(5)</a>
clarify behaviour of a keyword that appears in multiple matching
<code>Match</code> blocks. (bz#2184)
<li><a href="https://man.openbsd.org/ssh.1">ssh(1)</a>:
avoid unnecessary hostname lookups when canonicalisation is disabled.
(bz#2205)
<li><a href="https://man.openbsd.org/sshd.8">sshd(8)</a>:
avoid sandbox violation crashes in GSSAPI code by caching the supported
list of GSSAPI mechanism OIDs before entering the sandbox. (bz#2107)
<li><a href="https://man.openbsd.org/ssh.1">ssh(1)</a>:
fix possible crashes in SOCKS4 parsing caused by assumption that the
SOCKS username is nul-terminated.
<li><a href="https://man.openbsd.org/ssh.1">ssh(1)</a>:
fix regression for <code>UsePrivilegedPort=yes</code> when
<code>BindAddress</code> is not specified.
<li><a href="https://man.openbsd.org/ssh.1">ssh(1)</a>,
<a href="https://man.openbsd.org/sshd.8">sshd(8)</a>:
fix memory leak in ECDSA signature verification.
<li><a href="https://man.openbsd.org/ssh.1">ssh(1)</a>:
fix matching of '<code>Host</code>' directives in
<a href="https://man.openbsd.org/ssh_config.5">ssh_config(5)</a>
files to be case-insensitive again. (regression in 6.5)
</ul>
</ul>
<p>
<li>Ports and packages:
<ul>
<li>Over 8,700 ports.
<li>Major overhaul of the package tools, resulting in much better memory usage.
<li><a href="https://man.openbsd.org/pkg_add.1">pkg_add(1)</a> now only trusts signed packages by default.
<li>The build process now allows some limited capability for building
conflicting packages, yielding KDE 4 packages as a result, along
with KDE 3 ones.
</ul>
<p>
<li>Many pre-built packages for each architecture:
<ul style="column-count: 4">
<li>i386: 8468
<li>sparc64: 7969
<li>alpha: 6199
<li>m68k: 3270
<li>sh: 345
<li>amd64: 8534
<li>powerpc: 8057
<li>m88k: 1258
<li>sparc: 4681
<li>arm: 6181
<li>hppa: 6549
<li>vax: 1007
<li>mips64: 4726
<li>mips64el: 6730
</ul>
<p>
<li>Some highlights:
<ul>
<li>GNOME 3.10.2 <li>KDE 3.5.10
<li>KDE 4.11.5
<li>Xfce 4.10 <li>MySQL 5.1.73
<li>PostgreSQL 9.3.2 <li>Postfix 2.11.0
<li>OpenLDAP 2.3.43 and 2.4.38 <li>Mozilla Firefox 24.3 and 26.0
<li>Mozilla Thunderbird 24.3.0 <li>GHC 7.6.3
<li>LibreOffice 4.1.4.2 <li>Emacs 21.4 and 24.3
<li>Vim 7.4.135 <li>PHP 5.3.28 and 5.4.24
<li>Python 2.7.6 and 3.3.2 <li>Ruby 1.8.7.374, 1.9.3.484, 2.0.0.353 and 2.1.0
<li>Tcl/Tk 8.5.15 and 8.6.1 <li>JDK 1.6.0.32 and 1.7.0.21
<li>Mono 2.10.9 <li>Chromium 32.0.1700.102
<li>Groff 1.22.2 <li>Go 1.2
<li>GCC 4.6.4 and 4.8.2 <li>LLVM/Clang 3.3
<li>Node.js 0.10.24
</ul>
<p>
<li>As usual, steady improvements in manual pages and other documentation.
<p>
<li>The system includes the following major components from outside suppliers:
<ul>
<li>Xenocara (based on X.Org 7.7 with xserver 1.14.5 + patches,
freetype 2.5.2, fontconfig 2.10.91, Mesa 9.2.5, xterm 301,
xkeyboard-config 2.10.1 and more)
<li>Gcc 4.2.1 (+ patches) and 3.3.6 (+ patches)
<li>Perl 5.16.3 (+ patches)
<li>Our improved and secured version of Apache 1.3, with
SSL/TLS and DSO support
<li>Nginx 1.4.4 (+ patches)
<li>OpenSSL 1.0.1c (+ patches)
<li>SQLite 3.8.0.2 (+ patches)
<li>Sendmail 8.14.8, with libmilter
<li>Bind 9.4.2-P2 (+ patches)
<li>NSD 4.0.1
<li>Lynx 2.8.7rel.2 with HTTPS and IPv6 support (+ patches)
<li>Sudo 1.7.2p8
<li>Ncurses 5.7
<li>Heimdal 1.5.2 (+ patches)
<li>Binutils 2.15 (+ patches)
<li>Gdb 6.3 (+ patches)
<li>Less 444 (+ patches)
<li>Awk Aug 10, 2011 version
</ul>
</ul>
</section>
<hr>
<section id=install>
<h3>How to install</h3>
<p>
Following this are the instructions which you would have on a piece of
paper if you had purchased a CDROM set instead of doing an alternate
form of install. The instructions for doing an FTP (or other style
of) install are very similar; the CDROM instructions are left intact
so that you can see how much easier it would have been if you had
purchased a CDROM instead.
<p>
<hr>
Please refer to the following files on the three CDROMs or FTP mirror for
extensive details on how to install OpenBSD 5.5 on your machine:
<p>
<ul>
<li><a href="https://ftp.openbsd.org/pub/OpenBSD/5.5/i386/INSTALL.i386">
.../OpenBSD/5.5/i386/INSTALL.i386 (on CD1)</a>
<li><a href="https://ftp.openbsd.org/pub/OpenBSD/5.5/vax/INSTALL.vax">
.../OpenBSD/vax/INSTALL.vax (on CD1)</a>
<p>
<li><a href="https://ftp.openbsd.org/pub/OpenBSD/5.5/amd64/INSTALL.amd64">
.../OpenBSD/amd64/INSTALL.amd64 (on CD2)</a>
<li><a href="https://ftp.openbsd.org/pub/OpenBSD/5.5/hppa/INSTALL.hppa">
.../OpenBSD/hppa/INSTALL.hppa (on CD2)</a>
<li><a href="https://ftp.openbsd.org/pub/OpenBSD/5.5/macppc/INSTALL.macppc">
.../OpenBSD/macppc/INSTALL.macppc (on CD2)</a>
<p>
<li><a href="https://ftp.openbsd.org/pub/OpenBSD/5.5/sparc64/INSTALL.sparc64">
.../OpenBSD/sparc64/INSTALL.sparc64 (on CD3)</a>
<li><a href="https://ftp.openbsd.org/pub/OpenBSD/5.5/sparc/INSTALL.sparc">
.../OpenBSD/sparc/INSTALL.sparc (on CD3)</a>
<p>
<li><a href="https://ftp.openbsd.org/pub/OpenBSD/5.5/alpha/INSTALL.alpha">
.../OpenBSD/5.5/alpha/INSTALL.alpha</a>
<li><a href="https://ftp.openbsd.org/pub/OpenBSD/5.5/armish/INSTALL.armish">
.../OpenBSD/5.5/armish/INSTALL.armish</a>
<li><a href="https://ftp.openbsd.org/pub/OpenBSD/5.5/armv7/INSTALL.armv7">
.../OpenBSD/5.5/armv7/INSTALL.armv7</a>
<li><a href="https://ftp.openbsd.org/pub/OpenBSD/5.5/aviion/INSTALL.aviion">
.../OpenBSD/5.5/aviion/INSTALL.aviion</a>
<li><a href="https://ftp.openbsd.org/pub/OpenBSD/5.5/hp300/INSTALL.hp300">
.../OpenBSD/5.5/hp300/INSTALL.hp300</a>
<li><a href="https://ftp.openbsd.org/pub/OpenBSD/5.5/hppa/INSTALL.hppa">
.../OpenBSD/5.5/hppa/INSTALL.hppa</a>
<li><a href="https://ftp.openbsd.org/pub/OpenBSD/5.5/landisk/INSTALL.landisk">
.../OpenBSD/5.5/landisk/INSTALL.landisk</a>
<li><a href="https://ftp.openbsd.org/pub/OpenBSD/5.5/loongson/INSTALL.loongson">
.../OpenBSD/5.5/loongson/INSTALL.loongson</a>
<li><a href="https://ftp.openbsd.org/pub/OpenBSD/5.5/luna88k/INSTALL.luna88k">
.../OpenBSD/5.5/luna88k/INSTALL.luna88k</a>
<li><a href="https://ftp.openbsd.org/pub/OpenBSD/5.5/macppc/INSTALL.macppc">
.../OpenBSD/5.5/macppc/INSTALL.macppc</a>
<li><a href="https://ftp.openbsd.org/pub/OpenBSD/5.5/mvme68k/INSTALL.mvme68k">
.../OpenBSD/5.5/mvme68k/INSTALL.mvme68k</a>
<li><a href="https://ftp.openbsd.org/pub/OpenBSD/5.5/mvme88k/INSTALL.mvme88k">
.../OpenBSD/5.5/mvme88k/INSTALL.mvme88k</a>
<li><a href="https://ftp.openbsd.org/pub/OpenBSD/5.5/octeon/INSTALL.octeon">
.../OpenBSD/5.5/octeon/INSTALL.octeon</a>
<li><a href="https://ftp.openbsd.org/pub/OpenBSD/5.5/sgi/INSTALL.sgi">
.../OpenBSD/5.5/sgi/INSTALL.sgi</a>
<li><a href="https://ftp.openbsd.org/pub/OpenBSD/5.5/socppc/INSTALL.socppc">
.../OpenBSD/5.5/socppc/INSTALL.socppc</a>
<li><a href="https://ftp.openbsd.org/pub/OpenBSD/5.5/sparc/INSTALL.sparc">
.../OpenBSD/5.5/sparc/INSTALL.sparc</a>
<li><a href="https://ftp.openbsd.org/pub/OpenBSD/5.5/vax/INSTALL.vax">
.../OpenBSD/5.5/vax/INSTALL.vax</a>
<li><a href="https://ftp.openbsd.org/pub/OpenBSD/5.5/zaurus/INSTALL.zaurus">
.../OpenBSD/5.5/zaurus/INSTALL.zaurus</a>
</ul>
</section>
<hr>
<section id=quickinstall>
<p>
Quick installer information for people familiar with OpenBSD, and the
use of the "disklabel -E" command. If you are at all confused when
installing OpenBSD, read the relevant INSTALL.* file as listed above!
<h3>OpenBSD/i386:</h3>
<p>
Play with your BIOS options to enable booting from a CD. The OpenBSD/i386
release is on CD1. If your BIOS does not support booting from CD, you will need
to create a boot floppy to install from. To create a boot floppy write
<i>CD1:5.5/i386/floppy55.fs</i> to a floppy and boot via the floppy drive.
<p>
Use <i>CD1:5.5/i386/floppyB55.fs</i> instead for greater SCSI controller
support, or <i>CD1:5.5/i386/floppyC55.fs</i> for better laptop support.
<p>
If your machine can boot from USB, you can write <i>install55.fs</i> or
<i>miniroot55.fs</i> to a USB stick and boot from it.
<p>
If you can't boot from a CD, floppy disk, or USB,
you can install across the network using PXE as described in
the included INSTALL.i386 document.
<p>
If you are planning on dual booting OpenBSD with another OS, you will need to
read INSTALL.i386.
<p>
To make a boot floppy under MS-DOS, use the "rawrite" utility located
at <i>CD1:5.5/tools/rawrite.exe</i>. To make the boot floppy under a Unix OS,
use the
<a href="https://man.openbsd.org/dd.1">dd(1)</a>
utility. The following is an example usage of
<a href="https://man.openbsd.org/dd.1">dd(1)</a>,
where the device could be "floppy", "rfd0c", or
"rfd0a".
<blockquote><pre>
# <kbd>dd if=<file> of=/dev/<device> bs=32k</kbd>
</pre></blockquote>
<p>
Make sure you use properly formatted perfect floppies with NO BAD BLOCKS or
your install will most likely fail. For more information on creating a boot
floppy and installing OpenBSD/i386 please refer to
<a href="faq/faq4.html#MkFlop">this page</a>.
<h3>OpenBSD/amd64:</h3>
<p>
The 5.5 release of OpenBSD/amd64 is located on CD2.
Boot from the CD to begin the install - you may need to adjust
your BIOS options first.
If you can't boot from the CD, you can create a boot floppy to install from.
To do this, write <i>CD2:5.5/amd64/floppy55.fs</i> to a floppy, then
boot from the floppy drive.
<p>
If your machine can boot from USB, you can write <i>install55.fs</i> or
<i>miniroot55.fs</i> to a USB stick and boot from it.
<p>
If you can't boot from a CD, floppy disk, or USB,
you can install across the network using PXE as described in the included
INSTALL.amd64 document.
<p>
If you are planning to dual boot OpenBSD with another OS, you will need to
read INSTALL.amd64.
<h3>OpenBSD/macppc:</h3>
<p>
Burn the image from the FTP site to a CDROM, and power on your machine
while holding down the <i>C</i> key until the display turns on and
shows <i>OpenBSD/macppc boot</i>.
<p>
Alternatively, at the Open Firmware prompt, enter <i>boot cd:,ofwboot
/5.5/macppc/bsd.rd</i>
<h3>OpenBSD/sparc64:</h3>
<p>
Put CD3 in your CDROM drive and type <i>boot cdrom</i>.
<p>
If this doesn't work, or if you don't have a CDROM drive, you can write
<i>CD3:5.5/sparc64/floppy55.fs</i> or <i>CD3:5.5/sparc64/floppyB55.fs</i>
(depending on your machine) to a floppy and boot it with <i>boot
floppy</i>. Refer to INSTALL.sparc64 for details.
<p>
Make sure you use a properly formatted floppy with NO BAD BLOCKS or your install
will most likely fail.
<p>
You can also write <i>CD3:5.5/sparc64/miniroot55.fs</i> to the swap partition on
the disk and boot with <i>boot disk:b</i>.
<p>
If nothing works, you can boot over the network as described in INSTALL.sparc64.
<h3>OpenBSD/alpha:</h3>
<p>
Write <i>5.5/alpha/floppy55.fs</i> or
<i>5.5/alpha/floppyB55.fs</i> (depending on your machine) to a diskette and
enter <i>boot dva0</i>. Refer to INSTALL.alpha for more details.
<p>
Make sure you use a properly formatted floppy with NO BAD BLOCKS or your install
will most likely fail.
<h3>OpenBSD/armish:</h3>
<p>
After connecting a serial port, Thecus can boot directly from the network
either tftp or http. Configure the network using fconfig, reset,
then load bsd.rd, see INSTALL.armish for specific details.
IOData HDL-G can only boot from an EXT-2 partition. Boot into linux
and copy 'boot' and bsd.rd into the first partition on wd0 (hda1)
then load and run bsd.rd, preserving the wd0i (hda1) ext2fs partition.
More details are available in INSTALL.armish.
<h3>OpenBSD/hp300:</h3>
<p>
Boot over the network by following the instructions in INSTALL.hp300.
<h3>OpenBSD/hppa:</h3>
<p>
Boot over the network by following the instructions in INSTALL.hppa or the
<a href="hppa.html#install">hppa platform page</a>.
<h3>OpenBSD/landisk:</h3>
<p>
Write <i>miniroot55.fs</i> to the start of the CF
or disk, and boot normally.
<h3>OpenBSD/loongson:</h3>
<p>
Write <i>miniroot55.fs</i> to a USB stick and boot bsd.rd from it
or boot bsd.rd via tftp.
Refer to the instructions in INSTALL.loongson for more details.
<h3>OpenBSD/luna88k:</h3>
<p>
Copy 'boot' and 'bsd.rd' to a Mach or UniOS partition, and boot the bootloader
from the PROM, and the bsd.rd from the bootloader.
Refer to the instructions in INSTALL.luna88k for more details.
<h3>OpenBSD/mvme68k:</h3>
<p>
You can create a bootable installation tape or boot over the network.<br>
The network boot requires a MVME68K BUG version that supports the <i>NIOT</i>
and <i>NBO</i> debugger commands. Follow the instructions in INSTALL.mvme68k
for more details.
<h3>OpenBSD/mvme88k:</h3>
<p>
You can create a bootable installation tape or boot over the network.<br>
The network boot requires a MVME88K BUG version that supports the <i>NIOT</i>
and <i>NBO</i> debugger commands. Follow the instructions in INSTALL.mvme88k
for more details.
<h3>OpenBSD/octeon:</h3>
<p>
After connecting a serial port, boot bsd.rd over the network via DHCP/tftp.
Refer to the instructions in INSTALL.octeon for more details.
<h3>OpenBSD/sgi:</h3>
<p>
To install, burn cd55.iso on a CD-R, put it in the CD drive of your
machine and select <i>Install System Software</i> from the System Maintenance
menu. Indigo/Indy/Indigo2 (R4000) systems will not boot automatically from
CD-ROM, and need a proper invocation from the PROM prompt.
Refer to the instructions in INSTALL.sgi for more details.
<p>
If your machine doesn't have a CD drive, you can setup a DHCP/tftp network
server, and boot using "bootp()/bsd.rd.IP##" using the kernel matching your
system type. Refer to the instructions in INSTALL.sgi for more details.
<h3>OpenBSD/socppc:</h3>
<p>
After connecting a serial port, boot over the network via DHCP/tftp.
Refer to the instructions in INSTALL.socppc for more details.
<h3>OpenBSD/sparc:</h3>
<p>
Boot from one of the provided install ISO images, using one of the two
commands listed below, depending on the version of your ROM.
<blockquote><pre>
ok <kbd>boot cdrom 5.5/sparc/bsd.rd</kbd>
or
> <kbd>b sd(0,6,0)5.5/sparc/bsd.rd</kbd>