aboutsummaryrefslogtreecommitdiff
path: root/en_US.ISO8859-1/books/handbook/install/chapter.sgml
blob: 8271a70b21e0f39953cb591b95de61122d7e0bc7 (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
<!--
     The FreeBSD Documentation Project

     $FreeBSD: doc/en_US.ISO_8859-1/books/handbook/install/chapter.sgml,v 1.64 2000/12/15 21:52:35 jim Exp $
-->

<chapter id="install">
  <title>Installing FreeBSD</title>

  <para><emphasis>Restructured, updated, and parts rewritten by &a.jim;,
    January 2000.</emphasis></para>

  <sect1>
    <title>Synopsis</title>

    <para>The following chapter will attempt to guide you through the
      installation of FreeBSD on your system.  It can be installed through a
      variety of methods, including anonymous FTP (assuming you have
      network connectivity via modem or local network), CDROM, floppy
      disk, tape, an MS-DOS partition, or even NFS.</para>

    <para>No matter which method you choose, you will need to get started
      by creating the <emphasis>installation disks</emphasis> as described
      in the <link linkend="install-floppies">next section</link>.
      Booting into the FreeBSD installer, even if you are not planning on
      installing FreeBSD right away, will provide important information
      about compatibility with your hardware.  This information may
      dictate which installation options are even possible for you.  It
      can also provide clues early-on in the process to potential problems
      you may come across later.</para>

    <para>If you plan to install FreeBSD via anonymous FTP, the only
      things you will need are the <link
      linkend="install-floppies">installation floppies</link>.  The
      installation program itself will handle anything else that is
      required.</para>

    <para>For more information about obtaining FreeBSD, see the <link
      linkend="mirrors">Obtaining FreeBSD</link> section of the
      Appendix.</para>

    <para>By now, you are probably wondering what exactly it is you need
      to do.  Continue on to the installation guide.</para>
  </sect1>

  <sect1 id="install-guide">
    <title>Installation Guide</title>

    <para>The following sections will guide you through preparing for and
      actually installing FreeBSD.  If you find something missing, please
      let us know about it by sending email to the &a.doc;.</para>

    <sect2 id="install-prepare">
      <title>Preparing for the Installation</title>

      <para>There are various things you should do in preparation for the
        installation.  The following describes what needs to be done prior to
	each type of installation.</para>

      <para>The first thing to do is to make sure your hardware is
	supported by FreeBSD.  The list of <link
	linkend="install-hw">supported hardware</link> should
	come in handy here. ;-)  It would also be a good idea to make a
	list of any <quote>special</quote> cards you have installed,
	such as SCSI controllers, ethernet cards, sound cards, etc..
	The list should include their IRQs and IO port addresses.</para>

      <sect3 id="install-floppies">
	<title>Creating the Installation Floppies</title>

	<para>You may need to prepare some floppy disks.  These disks will
	  be used to boot your computer in to the FreeBSD install process.
	  This step is not necessary <emphasis>if</emphasis> you are
	  installing from CD-ROM, <emphasis>and</emphasis> your computer
	  supports booting from the CD-ROM.  If you do not meet these
	  requirements then you will need to create some floppies to boot
	  from.</para>

	<note>
	  <para>If you are not sure whether your computer can boot from the
	    CD-ROM it does not hurt to try.  Just insert the CD-ROM as
	    normal and restart your computer.  You might need to adjust some 
	    options in your BIOS so that your computer will try and boot
	    from the CD-ROM drive before the hard disk.</para>
	</note>
	  
	<tip>
	  <para>Even if you have the CD-ROM it might make sense for you to
	    download the files.  There have been occasions where bugs  in the
	    FreeBSD installer have been discovered after the CDs have been
	    released.  When this happens the copies of the images on the FTP
	    site will be fixed as soon as possible. Obviously, it is not
	    possible to update the CDs after they have been pressed.</para>
	</tip>

	<procedure>
	  <step>
	    <title>Acquire the boot floppy images</title>
	      
	    <para>These are files with a <filename>.flp</filename>
	      extension.  If you have a CD-ROM release of FreeBSD then you
	      will find the files in the <filename>floppies</filename>
	      subdirectory.  Alternatively, you can download the images from
	      the <ulink
		url="ftp://ftp.FreeBSD.org/pub/FreeBSD/releases/i386/&rel.current;-RELEASE/floppies/">floppies directory</ulink> of the FreeBSD FTP site or your local mirror.</para>

	    <para>The names of the files you will need varies between
	      FreeBSD releases (sometimes) and the architecture you will be
	      installing on.  The <ulink
		url="ftp://ftp.FreeBSD.org/pub/FreeBSD/releases/i386/&rel.current;-RELEASE/floppies/README.TXT">installation
		boot image information</ulink> on the FTP site provides
	      up-to-the-minute information about the specific files you will 
	      need.</para>
	  </step>

	  <step>
	    <title>Prepare the floppy disks</title>
	    
	    <para>You must prepare one floppy disk per image file you had to
	      download.  It is imperative that these disks are free from
	      defects.  The easiest way to test this is to format the disks
	      for yourself.  Do not trust pre-formatted floppies.</para>

	    <important>
	      <para>If you try to install FreeBSD and the installation
		program crashes, freezes, or otherwise misbehaves one of
		the first things to suspect is the floppies.  Try writing
		the floppy image files to some other disks, and try
		again.</para>
	    </important>
	  </step>

	  <step>
	    <title>Write the image files to the floppy disks.</title>

	    <para>The image files, such as <filename>kern.flp</filename>,
	      are <emphasis>not</emphasis> regular files you copy to the
	      disk.  Instead, they are images of the complete contents of
	      the disk.</para>

	    <para>This means that you can <emphasis>not</emphasis> use
	      commands like DOS' <command>copy</command> to write the
	      files.  Instead, you must use specific tools to write the
	      images directly to the disk.</para>

	    <para>If you are creating the floppies on a computer running DOS 
	      then we provide a tool to do this called
	      <command>fdimage</command>.</para>

	    <para>If you are using the floppies from the CD-ROM, and your
	      CD-ROM is the <devicename>E:</devicename> drive then you would 
	      run this:</para>

	    <screen><prompt>E:\&gt;</prompt> <userinput>tools\fdimage floppies\kern.flp A:</userinput></screen>

	    <para>Repeat this command for each <filename>.flp</filename>
	      file, replacing the floppy disk each time.  Adjust the command 
	      line as necessary, depending on where you have placed the
	      <filename>.flp</filename> files.  If you do not have the
	      CD-ROM then <command>fdimage</command> can be downloaded from
	      the <ulink
		url="ftp://ftp.FreeBSD.org/pub/FreeBSD/tools/"><filename>tools</filename> directory</ulink> on the FreeBSD FTP site.</para>

	    <para>If you are writing the floppies on a Unix system (such as
	      another FreeBSD system) you can use the &man.dd.1; command to
	      write the image files directly to disk.  On FreeBSD you would
	      run:</para>

	    <screen>&prompt.root; <userinput>dd if=kern.flp of=/dev/rfd0</userinput></screen>

	    <para>On FreeBSD <filename>/dev/rfd0</filename> refers to the
	      first floppy disk (the <devicename>A:</devicename> drive).
	      <filename>/dev/rfd1</filename> would be the
	      <devicename>B:</devicename> drive, and so on.  Other Unix
	      variants might have different names for the floppy disk
	      devices, and you will need to check the documentation for the
	      system as necessary.</para>
	  </step>
	</procedure>
      </sect3>

      <sect3 id="install-cdrom">
        <title>Before Installing from CDROM</title>
	
	<para>If your CDROM is of an unsupported type, please skip ahead
	  to the <link linkend="install-msdos">MS-DOS Preparation</link>
	  section.</para>
	
	<para>There is not a whole lot of preparation needed if you are
	  installing from one of <ulink
	  url="http://www.osd.bsdi.com/">BSDi's</ulink>
	  FreeBSD CDROMs (other CDROM distributions may work as well,
	  though we cannot say for certain as we have no hand or say in
	  how they created).  You can either boot into the CD installation
	  directly from DOS using the <filename>install.bat</filename> or
	  you can make floppies with the <filename>makeflp.bat</filename>
	  command.</para>

	<para>If the CD has El Torito boot support and your system
	  supports booting directly from the CDROM drive (many older
	  systems do <emphasis>NOT</emphasis>), simply insert the first
	  CD of the set into the drive and reboot your system.  You
	  will be put into the installation menu directly from the CD.</para>

	<para>If you are installing from an MS-DOS partition and have
	  the proper drivers to access your CD, run the
	  <filename>install.bat</filename> script provided on the CDROM.
	  This will attempt to boot the FreeBSD installation directly
	  from DOS.</para>

	<note>
	  <para>You must do this from actual DOS (i.e., boot in DOS
	    mode) and not from a DOS window under Windows.</para>
	</note>

	<para>For the easiest interface of all (from DOS), type
	  <command>view</command>.  This will bring up a DOS menu utility
	  that leads you through all of the available options.</para>

	<para>If you are creating the boot floppies from a UNIX machine,
	  see the <link linkend="install-floppies">Creating the Boot
	  Floppies</link> section of this guide for examples.</para>
	
	<para>Once you have booted from DOS or floppy, you should then be
	  able to select CDROM as the media type during the install
	  process and load the entire distribution from CDROM.  No other
	  types of installation media should be required.</para>

	<para>After your system is fully installed and you have rebooted
	  (from the hard disk), you can mount the CDROM at any time by
	  typing:</para>

	<screen>&prompt.root; <userinput>mount /cdrom</userinput></screen>

	<para>Before removing the CD from the drive again, you must first
	  unmount it.  This is done with the following command:</para>

	<screen>&prompt.root; <userinput>umount /cdrom</userinput></screen>

	<para>Do not just remove it from the drive!</para>

	<note>
	  <para>Before invoking the installation, be sure that the CDROM
	    is in the drive so that the install probe can find it.  This
	    is also true if you wish the CDROM to be added to the default
	    system configuration automatically during the installation (whether
	    or not you actually use it as the installation media).</para>
	</note>

	<para>Finally, if you would like people to be able to FTP install
	  FreeBSD directly from the CDROM in your machine, you will find
	  it quite easy.  After the machine is fully installed, you simply
	  need to add the following line to the password file (using the
	  <command>vipw</command> command):</para>

	<programlisting>ftp:*:99:99::0:0:FTP:/cdrom:/nonexistent</programlisting>

	<para>Anyone with network connectivity to your machine can now
	  chose a media type of FTP and type in
	  <userinput>ftp://<replaceable>your machine</replaceable></userinput>
	  after picking <quote>Other</quote> in the FTP sites menu during
	  the install.</para>

	 <note><para>If you choose to enable anonymous FTP during the
	 installation of your system, the installation program will do
	 the above for you.</para></note>

      </sect3>

      <sect3>
        <title>Before installing from Floppies</title>

	<para>If you must install from floppy disk (which we suggest you
	  do <emphasis>NOT</emphasis> do), either due to unsupported
	  hardware or simply because you insist on doing things the hard
	  way, you must first prepare some floppies for the installation.</para>

	<para>At a minimum, you will need as many 1.44MB or 1.2MB floppies
	  as it takes to hold all the files in the
	  <filename>bin</filename> (binary distribution) directory.  If
	  you are preparing the floppies from DOS, then they
	  <emphasis>MUST</emphasis> be formatted using the MS-DOS
	  <command>FORMAT</command> command.  If you are using Windows,
	  use Explorer to format the disks (right-click on the
	  <devicename>A:</devicename> drive, and select &quot;Format&quot;.</para>

	<para>Do <emphasis>NOT</emphasis> trust factory pre-formatted
	  floppies!  Format them again yourself, just to be sure.  Many
	  problems reported by our users in the past have resulted from
	  the use of improperly formatted media, which is why we are
	  making a point of it now.</para>

	<para>If you are creating the floppies on another FreeBSD machine,
	  a format is still not a bad idea, though you do not need to put
	  a DOS filesystem on each floppy.  You can use the
	  <command>disklabel</command> and <command>newfs</command>
	  commands to put a UFS filesystem on them instead, as the
	  following sequence of commands (for a 3.5" 1.44MB floppy)
	  illustrates:</para>

	<screen>&prompt.root; <userinput>fdformat -f 1440 fd0.1440</userinput>
&prompt.root; <userinput>disklabel -w -r fd0.1440 floppy3</userinput>
&prompt.root; <userinput>newfs -t 2 -u 18 -l 1 -i 65536 /dev/rfd0</userinput></screen>

	<note>
	  <para>Use <literal>fd0.1200</literal> and
	    <literal>floppy5</literal> for 5.25" 1.2MB disks.</para>
	</note>

	<para>Then you can mount and write to them like any other
	  filesystem.</para>

	<para>After you have formatted the floppies, you will need to copy
	  the files to them.  The distribution files are split into chunks
	  conveniently sized so that 5 of them will fit on a conventional
	  1.44MB floppy.  Go through all your floppies, packing as many
	  files as will fit on each one, until you have all of the
	  distributions you want packed up in this fashion.  Each
	  distribution should go into a subdirectory on the floppy, e.g.:
	  <filename>a:\bin\bin.aa</filename>,
	  <filename>a:\bin\bin.ab</filename>, and so on.</para>

	<para>Once you come to the Media screen during the install
	  process, select <quote>Floppy</quote> and you will be prompted
	  for the rest.</para>
      </sect3>

      <sect3 id="install-msdos">
        <title>Before Installing from MS-DOS</title>

	<para>To prepare for an installation from an MS-DOS partition,
	  copy the files from the distribution into a directory named,
	  for example, <filename>c:\FreeBSD</filename>.  The directory
	  structure of the CDROM or FTP site must be partially reproduced
	  within this directory, so we suggest using the DOS
	  <command>xcopy</command> command if you are copying it from a
	  CD.  For example, to prepare for a minimal installation of
	  FreeBSD:</para>

	<screen><prompt>C:\&gt;</prompt> <userinput>md c:\FreeBSD</userinput>
<prompt>C:\&gt;</prompt> <userinput>xcopy e:\bin c:\FreeBSD\bin\ /s</userinput>
<prompt>C:\&gt;</prompt> <userinput>xcopy e:\manpages c:\FreeBSD\manpages\ /s</userinput></screen>

	<para>Assuming that <devicename>C:</devicename> is where you have
	  free space and <devicename>E:</devicename> is where your CDROM
	  is mounted.</para>
	
	<para>If you do not have a CDROM drive, you can download the
	distribution from <ulink
	url="ftp://ftp.FreeBSD.org/pub/FreeBSD/releases/i386/&rel.current;-RELEASE/">
	ftp.FreeBSD.org</ulink>. Each distribution is in its own directory; 
	for example, the <emphasis>bin</emphasis> distribution can be 
	found in the <ulink
	url="ftp://ftp.FreeBSD.org/pub/FreeBSD/releases/i386/&rel.current;-RELEASE/bin">&rel.current;/bin</ulink> directory.</para>
    
	<para>For as many distributions you wish to install from an MS-DOS
	  partition (and you have the free space for), install each one
	  under <filename>c:\FreeBSD</filename> &mdash; the
	  <literal>BIN</literal> distribution is the only one required for
	  a minimum installation.</para>
      </sect3>

      <sect3>
        <title>Before Installing from QIC/SCSI Tape</title>

	<para>Installing from tape is probably the easiest method, short
	  of an online FTP install or CDROM install.  The installation
	  program expects the files to be simply tarred onto the tape, so
	  after getting all of the distribution files you are interested
	  in, simply tar them onto the tape like so:</para>

	<screen>&prompt.root; <userinput>cd /freebsd/distdir</userinput>
&prompt.root; <userinput>tar cvf /dev/rwt0 dist1 ... dist2</userinput></screen>

	<para>When you go to do the installation, you should also make
	  sure that you leave enough room in some temporary directory
	  (which you will be allowed to choose) to accommodate the
	  <emphasis>full</emphasis> contents of the tape you have created.
	  Due to the non-random access nature of tapes, this method of
	  installation requires quite a bit of temporary storage.  You
	  should expect to require as much temporary storage as you have
	  stuff written on tape.</para>

	<note>
	  <para>When starting the installation, the tape must be in the
	    drive <emphasis>before</emphasis> booting from the boot
	    floppy.  The installation probe may otherwise fail to find
	    it.</para>
	</note>
      </sect3>

      <sect3>
        <title>Before Installing over a Network</title>

	<para>There are three types of network installations you can do.
	  Serial port (SLIP or PPP), Parallel port (PLIP (laplink cable)),
	  or Ethernet (a standard ethernet controller (includes some
	  PCMCIA)).</para>

	<para>The SLIP support is rather primitive, and limited primarily
	  to hard-wired links, such as a serial cable running between a
	  laptop computer and another computer.  The link should be
	  hard-wired as the SLIP installation does not currently offer a
	  dialing capability; that facility is provided with the PPP
	  utility, which should be used in preference to SLIP whenever
	  possible.</para>

	<para>If you are using a modem, then PPP is almost certainly
	  your only choice.  Make sure that you have your service
	  provider's information handy as you will need to know it fairly
	  early in the installation process.</para>  
	  <para>If you use PAP or CHAP to connect your ISP (in other
	  words, if you can connect to the ISP in Windows without
	  using a script), then all you will need to do is type in
	  <command>dial</command> at the
	  <application>ppp</application> prompt. Otherwise,
	  you will need to know
	  how to dial your ISP using the <quote>AT commands</quote>
	  specific to your modem, as the PPP dialer provides only a very
	  simple terminal emulator. Please
	  to the user-ppp <link linkend="userppp">handbook</link> and <ulink
	  url="../FAQ/ppp.html">FAQ</ulink> entries for further
	  information.  If you have problems, logging can be directed to
	  the screen using the command <command>set log local
	  ...</command>.</para>

	<para>If a hard-wired connection to another FreeBSD (2.0-R or
	  later) machine is available, you might also consider installing
	  over a <quote>laplink</quote> parallel port cable.  The data rate
	  over the parallel port is much higher than what is typically
	  possible over a serial line (up to 50kbytes/sec), thus resulting
	  in a quicker installation.</para>

	<para>Finally, for the fastest possible network installation, an
	  ethernet adapter is always a good choice!  FreeBSD supports most
	  common PC ethernet cards; a table of supported cards (and their
	  required settings) is provided in the <link
	  linkend="install-hw">Supported Hardware</link> list.  If you are
	  using one of the supported PCMCIA ethernet cards, also be sure
	  that it is plugged in <emphasis>before</emphasis> the laptop is
	  powered on!  FreeBSD does not, unfortunately, currently support
	  hot insertion of PCMCIA cards during installation.</para>

	<para>You will also need to know your IP address on the network,
	  the netmask value for your address class, and the name of your
	  machine.  If you are installing over a PPP connection and do not
	  have a static IP, fear not, the IP address can be dynamically
	  assigned by your ISP.  Your system administrator can tell you
	  which values to use for your particular network setup.  If you
	  will be referring to other hosts by name rather than IP address,
	  you will also need a name server and possibly the address of a
	  gateway (if you are using PPP, it is your provider's IP address)
	  to use in talking to it.  If you want to install by FTP via a
	  HTTP proxy (see below), you will also need the proxy's address.
	  If you do not know the answers to all or most of these questions,
	  then you should really probably talk to your system administrator
	  or ISP <emphasis>before</emphasis> trying this type of
	  installation.</para>

	<sect4>
	  <title>Before Installing via NFS</title>

	  <para>The NFS installation is fairly straight-forward.  Simply
	    copy the FreeBSD distribution files you want onto a server
	    somewhere and then point the NFS media selection at it.</para>

	  <para>If this server supports only <quote>privileged port</quote>
	    (as is generally the default for Sun workstations), you will
	    need to set this option in the Options menu before
	    installation can proceed.</para>

	  <para>If you have a poor quality ethernet card which suffers
	    from very slow transfer rates, you may also wish to toggle the
	    appropriate Options flag.</para>

	  <para>In order for NFS installation to work, the server must
	    support subdir mounts, e.g., if your FreeBSD 3.4 distribution
	    directory lives
	    on:<filename>ziggy:/usr/archive/stuff/FreeBSD</filename>, then
	    <hostid>ziggy</hostid> will have to allow the direct mounting
	    of <filename>/usr/archive/stuff/FreeBSD</filename>, not just
	    <filename>/usr</filename> or
	    <filename>/usr/archive/stuff</filename>.</para>

	  <para>In FreeBSD's <filename>/etc/exports</filename> file, this
	    is controlled by the <option>-alldirs</option>.  Other NFS
	    servers may have different conventions.  If you are getting
	    <quote>permission denied</quote> messages from the server, then
	    it is likely that you do not have this enabled
	    properly.</para>
	</sect4>

	<sect4>
	  <title>Before Installing via FTP</title>

	  <para>FTP installation may be done from any FreeBSD mirror site
	    containing a reasonably up-to-date version of FreeBSD.  A full
	    list of FTP mirrors located all over the world is provided
	    during the install process.</para>

	  <para>If you are installing from an FTP site not listed in this
	    menu, or are having trouble getting your name server
	    configured properly, you can also specify a URL to use by
	    selecting the choice labeled <quote>Other</quote> in that menu.
	    You can also use the IP address of a machine you wish to
	    install from, so the following would work in the absence of a
	    name server:</para>

	  <screen><userinput>ftp://209.55.82.20/pub/FreeBSD/&rel.current;-RELEASE</userinput></screen>

	  <para>There are three FTP installation modes you can choose from:
	    active or passive FTP or via a HTTP proxy.</para>

	  <variablelist>
	    <varlistentry>
	      <term>FTP Active</term>

	      <listitem>
	        <para>This option will make all FTP transfers 
		  use <quote>Active</quote>
		  mode.  This will not work through firewalls, but will
		  often work with older FTP servers that do not support
		  passive mode.  If your connection hangs with passive
		  mode (the default), try active!</para>
	      </listitem>
	    </varlistentry>

	    <varlistentry>
	      <term>FTP Passive</term>

	      <listitem>
	        <para>This option instructs FreeBSD to use 
		  <quote>Passive</quote> mode for all FTP operations.  
		  This allows the user to pass through firewalls
		  that do not allow incoming connections on random port
		  addresses.</para>
	      </listitem>
	    </varlistentry>

	    <varlistentry>
	      <term>FTP via a HTTP proxy</term>

	      <listitem>
	        <para>This option instructs FreeBSD to use the HTTP
		  protocol (like a web browser) to connect to a proxy
		  for all FTP operations.  The proxy will translate
		  the requests and send them to the FTP server.
		  This allows the user to pass through firewalls
		  that do not allow FTP at all, but offer a HTTP
		  proxy.
		  In this case, you have to specify the proxy in
		  addition to the FTP server.</para>
	      </listitem>
	    </varlistentry>
	  </variablelist>

	  <note>
	    <para>There is another type of FTP proxy other tha HTTP
	      proxies.  This type is very uncommon, though.  If you
	      are not absolutely certain, you can assume that you
	      have a HTTP proxy as described above.</para>
	  </note>

	  <para>For a proxy FTP server, you should usually give the name
	    of the server you really want as a part of the username, after
	    an <quote>@</quote> sign.  The proxy server then
	    <quote>fakes</quote> the real server.  For example, assuming
	    you want to install from <hostid
	    role="fqdn">ftp.FreeBSD.org</hostid>, using the proxy FTP
	    server <hostid role="fqdn">foo.bar.com</hostid>, listening on
	    port 1024.</para>

	  <para>In this case, you go to the options menu, set the FTP
	    username to ftp@ftp.FreeBSD.org, and the password to your
	    email address.  As your installation media, you specify FTP
	    (or passive FTP, if the proxy supports it), and the URL
	    <literal>ftp://foo.bar.com:1234/pub/FreeBSD</literal>.</para>

	  <para>Since <filename>/pub/FreeBSD</filename> from <hostid
	    role="fqdn">ftp.FreeBSD.org</hostid> is proxied under <hostid
	    role="fqdn">foo.bar.com</hostid>, you are able to install from
	    <emphasis>that</emphasis> machine (which will fetch the files
	    from <hostid role="fqdn">ftp.FreeBSD.org</hostid> as your
	    installation requests them.</para>
	</sect4>
      </sect3>
	
      <sect3>
	<title>Check your BIOS drive numbering</title>

	<para>If you have used features in your BIOS to renumber your disk
	  drives without re-cabling them then you should read <xref
	    linkend="disks-bios-numbering"> first to avoid confusion.</para>
      </sect3>
    </sect2>

    <sect2 id="install-freebsd">
      <title>Installing FreeBSD</title>

      <para>Once you have completed the pre-installation step relevant to
        your situation, you are ready to install FreeBSD!</para>

      <para>Although you should not experience any difficulty, there is
        always the chance that you may, no matter how slight it is.  If this
	is the case in your situation, then you may wish to go back and
	re-read the relevant preparation section or sections.  Perhaps you
	will come across something you missed the first time.  If you are
	having hardware problems, or FreeBSD refuses to boot at all, read
	the <ulink url="../FAQ/hardware.html">Hardware Guide</ulink> for a
	list of possible solutions.</para>

      <para>The FreeBSD boot floppies contain all of the online
        documentation you should need to be able to navigate through an
	installation.  If it does not, please let us know what you found
	to be the most confusing or most lacking.  Send your comments to
	the &a.doc;.  It is the objective of the installation program
	(sysinstall) to be self-documenting enough that painful
	<quote>step-by-step</quote> guides are no longer necessary.  It may
	take us a little while to reach that objective, but nonetheless,
	it is still our objective :-)</para>

      <para>Meanwhile, you may also find the following <quote>typical
        installation sequence</quote> to be helpful:</para>

      <orderedlist>
        <listitem>
	  <para>Boot the <filename>kern.flp</filename> floppy and when
	    asked, remove it and insert the
	    <filename>mfsroot.flp</filename> and hit return.  After a
	    boot sequence which can take anywhere from 30 seconds to 3
	    minutes, depending on your hardware, you should be presented
	    with a menu of initial choices.  If the
	    <filename>kern.flp</filename> floppy does not boot at all or
	    the boot hangs at some stage, read the Q&amp;A section of the
	    <ulink url="../FAQ/hardware.html">Hardware Guide</ulink> for
	    possible causes.</para>
	</listitem>

	<listitem>
	  <para>Press F1.  You should see some basic usage instructions on
	    the menu screen and general navigation.  If you have not used
	    this menu system before then <emphasis>please</emphasis> read
	    this thoroughly.</para>
	</listitem>

	<listitem>
	  <para>Select the Options item and set any special preferences
	    you may have.</para>
	</listitem>

	<listitem>
	  <para>Select a Standard, Express, or Custom install, depending on
	    whether or not you would like the installation to help you
	    through a typical installation, give you a high degree of
	    control over each step, or simply whiz through it (using
	    reasonable defaults when possible) as fast as possible.  If
	    you have never used FreeBSD before, the Standard installation
	    method is most recommended.</para>
	</listitem>

	<listitem>
	  <para>The final configuration menu choice allows you to further
	    configure your FreeBSD installation by giving you menu-driven
	    access to various system defaults.  Some items, like
	    networking, may be especially important if you did a CDROM,
	    tape, or floppy install and have not yet configured your
	    network interfaces (assuming you have any).  Properly
	    configuring such interfaces here will allow FreeBSD to come up
	    on the network when you first reboot from the hard
	    disk.</para>
	</listitem>
      </orderedlist>
    </sect2>
  </sect1>

  <sect1 id="install-hw">
    <title>Supported Hardware</title>

    <para>FreeBSD currently runs on a wide variety of ISA, VLB, EISA, and
      PCI bus based PCs, ranging from the 386SX to Pentium class machines
      (though the 386SX is not recommended).  Support for generic IDE or
      ESDI drive configurations, various SCSI controllers, and network and
      serial cards is also provided.  FreeBSD also supports IBM's
      microchannel (MCA) bus.</para>

    <para>In order to run FreeBSD, a recommended minimum of eight
      megabytes of RAM is suggested.  Sixteen megabytes is the preferred
      amount of RAM as you may have some trouble with anything less than
      sixteen depending on your hardware.</para>

    <para>What follows is a list of hardware currently known to work with
      FreeBSD.  There may be other hardware that works as well, but we
      have simply not received any confirmation of it.</para>

    <sect2>
      <title>Disk Controllers</title>

      <itemizedlist>
        <listitem>
	  <para>WD1003 (any generic MFM/RLL)</para>
	</listitem>

	<listitem>
	  <para>WD1007 (any generic IDE/ESDI)</para>
	</listitem>

	<listitem>
	  <para>IDE</para>
	</listitem>

	<listitem>
	  <para>ATA</para>
	</listitem>

	<listitem>
	  <para>Adaptec 1535 ISA SCSI controllers</para>
	</listitem>

	<listitem>
	  <para>Adaptec 154X series ISA SCSI controllers</para>
	</listitem>

	<listitem>
	  <para>Adaptec 174X series EISA SCSI controllers in standard and
	    enhanced mode</para>
	</listitem>

	<listitem>
	  <para>Adaptec 274X/284X/2920C/294X/2950/3940/3950
	    (Narrow/Wide/Twin) series EISA/VLB/PCI SCSI controllers</para>
	</listitem>

	<listitem>
	  <para>Adaptec AIC-7850, AIC-7860, AIC-7880, AIC-789X on-board SCSI
	    controllers</para>
	</listitem>

	<listitem>
	  <para>Adaptec 1510 series ISA SCSI controllers (not for bootable
	    devices)</para>
	</listitem>

	<listitem>
	  <para>Adaptec 152X series ISA SCSI controllers</para>
	</listitem>

	<listitem>
	  <para>Adaptec AIC-6260 and AIC-6360 based boards, which include
	  the AHA-152X and SoundBlaster SCSI cards</para>
	</listitem>

	<listitem>
	  <para>AdvanSys SCSI controllers (all models)</para>
	</listitem>

	<listitem>
	  <para>BusLogic MultiMaster <quote>W</quote> Series Host Adapters
	    including BT-948, BT-958, BT-9580</para>
	</listitem>

	<listitem>
	  <para>BusLogic MultiMaster <quote>C</quote> Series Host Adapters
	    including BT-946C, BT-956C, BT-956CD, BT-445C, BT-747C,
	    BT-757C, BT-757CD, BT-545C, BT-540CF</para>
	</listitem>

	<listitem>
	  <para>BusLogic MultiMaster <quote>S</quote> Series Host Adapters
	    including BT-445S, BT-747S, BT-747D, BT-757S, BT-757D,
	    BT-545S, BT-542D, BT-742A, BT-542B</para>
	</listitem>

	<listitem>
	  <para>BusLogic MultiMaster <quote>A</quote> Series Host Adapters
	    including BT-742A, BT-542B</para>
	</listitem>

	<listitem>
	  <para>AMI FastDisk controllers that are true BusLogic
	    MultiMaster clones are also supported.</para>
	    
	  <note>
	    <para>BusLogic/Mylex <quote>Flashpoint</quote> adapters are NOT
	      yet supported.</para>
	  </note>
	</listitem>

	<listitem>
	  <para>DPT SmartCACHE Plus, SmartCACHE III, SmartRAID III,
	    SmartCACHE IV, and SmartRAID IV SCSI/RAID are supported.  The
	    DPT SmartRAID/CACHE V is not yet supported.  The DPT PM3754U2-16M
	    SCSI RAID Controller is also supported.</para>
	</listitem>

	<listitem>
	  <para>Compaq Intelligent Disk Array Controllers: IDA, IDA-2, IAES,
	    SMART, SMART-2/E, Smart-2/P, SMART-2SL, Integrated Array, and
	    Smart Arrays 3200, 3100ES, 221, 4200, 4200, 4250ES.</para>
	</listitem>

	<listitem>
	  <para>SymBios (formerly NCR) 53C810, 53C810a, 53C815, 53C820,
	    53C825a, 53C860, 53C875, 53C875j, 53C885, and 53C896 PCI SCSI
	    controllers including ASUS SC-200, Data Technology DTC3130
	    (all variants), Diamond FirePort (all), NCR cards (all),
	    SymBios cards (all), Tekram DC390W, 390U, and 390F, and Tyan
	    S1365</para>
	</listitem>

	<listitem>
	  <para>QLogic 1020, 1040, 1040B, and 2100 SCSI and Fibre
	    Channel Adapters</para>
	</listitem>

	<listitem>
	  <para>DTC 3290 EISA SCSI controller in 1542 evaluation
	    mode</para>
	</listitem>
      </itemizedlist>

      <para>With all supported SCSI controllers, full support is provided
        for SCSI-I and SCSI-II peripherals, including hard disks, optical
	disks, tape drives (including DAT and 8mm Exabyte), medium
	changers, processor target devices, and CDROM drives.  WORM
	devices that support CDROM commands are supported for read-only
	access by the CDROM driver.  WORM/CD-R/CD-RW writing support is
	provided by cdrecord, which is in the ports tree.</para>

      <para>The following CD-ROM type systems are supported at this
        time:</para>

      <itemizedlist>
        <listitem>
	  <para><devicename>cd</devicename> - SCSI interface (includes
	    ProAudio Spectrum and SoundBlaster SCSI)</para>
	</listitem>

	<listitem>
	  <para><devicename>matcd</devicename> - Matsushita/Panasonic
	    (Creative SoundBlaster) proprietary interface (562/563
	    models)</para>
	</listitem>

	<listitem>
	  <para><devicename>scd</devicename> - Sony proprietary interface
	    (all models)</para>
	</listitem>

	<listitem>
	  <para><devicename>acd</devicename> - ATAPI IDE interface</para>
	</listitem>
      </itemizedlist>

      <para>The following drivers were supported under the old SCSI
        subsystem, but are NOT YET supported under the new CAM SCSI
	subsystem:</para>

      <itemizedlist>
        <listitem>
	  <para>NCR5380/NCR53400 (<quote>ProAudio Spectrum</quote>) SCSI
	    controller</para>
	</listitem>

	<listitem>
	  <para>UltraStor 14F, 24F, and 34F SCSI controllers</para>
	</listitem>

	<listitem>
	  <para>Seagate ST01/02 SCSI controllers</para>
	</listitem>

	<listitem>
	  <para>Future Domain 8XX/950 series SCSI controllers</para>
	</listitem>

	<listitem>
	  <para>WD7000 SCSI controller</para>

	  <note>
	    <para>There is work-in-progress to port the UltraStor driver
	      to the new CAM framework, but no estimates on when or if it
	      will be completed.</para>
	  </note>
	</listitem>
      </itemizedlist>

      <para>Unmaintained drivers, which might or might not work for your
        hardware:</para>

      <itemizedlist>
        <listitem>
	  <para>Floppy tape interface (Colorado/Mountain/Insight)</para>
	</listitem>

	<listitem>
	  <para><devicename>mcd</devicename> - Mitsumi proprietary CD-ROM
	    interface (all models)</para>
	</listitem>
      </itemizedlist>
    </sect2>

    <sect2 id="install-nics">
      <title>Network Cards</title>

      <itemizedlist>
        <listitem>
	  <para>Adaptec Duralink PCI fast ethernet adapters based on the
	    Adaptec AIC-6195 fast ethernet controller chip, including the
	    following:</para>

	  <itemizedlist>
	    <listitem>
	      <para>ANA-62011 64-bit single port 10/100baseTX
	        adapter</para>
	    </listitem>

	    <listitem>
	      <para>ANA-62022 64-bit dual port 10/100baseTX adapter</para>
	    </listitem>

	    <listitem>
	      <para>ANA-62044 64-bit quad port 10/100baseTX adapter</para>
	    </listitem>

	    <listitem>
	      <para>ANA-69011 32-bit single port 10/100baseTX
	        adapter</para>
	    </listitem>

	    <listitem>
	      <para>ANA-62020 64-bit single port 100baseFX adapter</para>
	    </listitem>
	  </itemizedlist>
        </listitem>

	<listitem>
	  <para>Allied-Telesyn AT1700 and RE2000 cards</para>
	</listitem>

	<listitem>
	  <para>Alteon Networks PCI gigabit ethernet NICs based on the
	    Tigon 1 and Tigon 2 chipsets including the Alteon AceNIC
	    (Tigon 1 and 2), 3Com 3c985-SX (Tigon 1 and 2), Netgear GA620
	    (Tigon 2), Silicon Graphics Gigabit Ethernet, DEC/Compaq
	    EtherWORKS 1000, NEC Gigabit Ethernet</para>
	</listitem>

	<listitem>
	  <para>AMD PCnet/PCI (79c970 and 53c974 or 79c974)</para>
	</listitem>

	<listitem>
	  <para>RealTek 8129/8139 fast ethernet NICs including the
	    following:</para>

	  <itemizedlist>
	    <listitem>
	      <para>Allied-Telesyn AT2550</para>
	    </listitem>

	    <listitem>
	      <para>Allied-Telesyn AT2500TX</para>
	    </listitem>

	    <listitem>
	      <para>Genius GF100TXR (RTL8139)</para>
	    </listitem>

	    <listitem>
	      <para>NDC Communications NE100TX-E</para>
	    </listitem>

	    <listitem>
	      <para>OvisLink LEF-8129TX</para>
	    </listitem>

	    <listitem>
	      <para>OvisLink LEF-8139TX</para>
	    </listitem>

	    <listitem>
	      <para>Netronix Inc. EA-1210 NetEther 10/100</para>
	    </listitem>

	    <listitem>
	      <para>KTX-9130TX 10/100 Fast Ethernet</para>
	    </listitem>

	    <listitem>
	      <para>Accton <quote>Cheetah</quote> EN1207D (MPX 5030/5038;
	        RealTek 8139 clone)</para>
	    </listitem>

	    <listitem>
	      <para>SMC EZ Card 10/100 PCI 1211-TX</para>
	    </listitem>
	  </itemizedlist>
	</listitem>

	<listitem>
	  <para>Lite-On 98713, 98713A, 98715, and 98725 fast ethernet
	    NICs, including the LinkSys EtherFast LNE100TX, NetGear
	    FA310-TX Rev. D1, Matrox FastNIC 10/100, Kingston
	    KNE110TX</para>
	</listitem>

	<listitem>
	  <para>Macronix 98713, 98713A, 98715, 98715A, and 98725 fast
	    ethernet NICs including the NDC Communications SFA100A
	    (98713A), CNet Pro120A (98713 or 98713A), CNet Pro120B
	    (98715), SVEC PN102TX (98713)</para>
	</listitem>

	<listitem>
	  <para>Macronix/Lite-On PNIC II LC82C115 fast ethernet NICs
	    including the LinkSys EtherFast LNE100TX version 2</para>
	</listitem>

	<listitem>
	  <para>Winbond W89C840F fast ethernet NICs including the
	    Trendware TE100-PCIE</para>
	</listitem>

	<listitem>
	  <para>VIA Technologies VT3043 <quote>Rhine I</quote> and
	    VT86C100A <quote>Rhine II</quote> fast ethernet NICs including
	    the Hawking Technologies PN102TX and D-Link DFE-530TX</para>
	</listitem>

	<listitem>
	  <para>Silicon Integrated Systems SiS 900 and SiS 7016 PCI fast
	    ethernet NICs</para>
	</listitem>

	<listitem>
	  <para>Sundance Technologies ST201 PCI fast ethernet NICs
	    including the D-Link DFE-550TX</para>
	</listitem>

	<listitem>
	  <para>SysKonnect SK-984x PCI gigabit ethernet cards including
	    the SK-9841 1000baseLX (single mode fiber, single port),
	    the SK-9842 1000baseSX (multimode fiber, single port), the
	    SK-9843 1000baseLX (single mode fiber, dual port), and the
	    SK-9844 1000baseSX (multimode fiber, dual port).</para>
	</listitem>

	<listitem>
	  <para>Texas Instruments ThunderLAN PCI NICs, including the
	    Compaq Netelligent 10, 10/100, 10/100 Proliant, 10/100
	    Dual-Port, 10/100 TX Embedded UTP, 10 T PCI UTP/Coax, and
	    10/100 TX UTP, the Compaq NetFlex 3P, 3P Integrated, and 3P
	    w/BNC, the Olicom OC-2135/2138, OC-2325, OC-2326 10/100 TX
	    UTP, and the Racore 8165 10/100baseTX and 8148
	    10baseT/100baseTX/100baseFX multi-personality cards</para>
	</listitem>

	<listitem>
	  <para>ADMtek AL981-based and AN985-based PCI fast ethernet
	    NICs</para>
	</listitem>

	<listitem>
	  <para>ASIX Electronics AX88140A PCI NICs including the Alfa Inc.
	    GFC2204 and CNet Pro110B</para>
	</listitem>

	<listitem>
	  <para>DEC EtherWORKS III NICs (DE203, DE204, and DE205)</para>
	</listitem>

	<listitem>
	  <para>DEC EtherWORKS II NICs (DE200, DE201, DE202, and
	    DE422)</para>
	</listitem>

	<listitem>
	  <para>DEC DC21040, DC21041, or DC21140 based NICs (SMC
	    Etherpower 8432T, DE245, etc.)</para>
	</listitem>

	<listitem>
	  <para>DEC FDDI (DEFPA/DEFEA) NICs</para>
	</listitem>

	<listitem>
	  <para>Efficient ENI-155p ATM PCI</para>
	</listitem>

	<listitem>
	  <para>FORE PCA-200E ATM PCI</para>
	</listitem>

	<listitem>
	  <para>Fujitsu MB86960A/MB86965A</para>
	</listitem>

	<listitem>
	  <para>HP PC Lan+ cards (model numbers: 27247B and 27252A)</para>
	</listitem>

	<listitem>
	  <para>Intel EtherExpress ISA (not recommended due to driver
	    instability)</para>
	</listitem>

	<listitem>
	  <para>Intel EtherExpress Pro/10</para>
	</listitem>

	<listitem>
	  <para>Intel EtherExpress Pro/100B PCI Fast Ethernet</para>
	</listitem>

	<listitem>
	  <para>Isolan AT 4141-0 (16 bit)</para>
	</listitem>

	<listitem>
	  <para>Isolink 4110 (8 bit)</para>
	</listitem>

	<listitem>
	  <para>Novell NE1000, NE2000, and NE2100 Ethernet
	    interfaces</para>
	</listitem>

	<listitem>
	  <para>PCI network cards emulating the NE2000, including the
	    RealTek 8029, NetVin 5000, Winbond W89C940, Surecom NE-34, VIA
	    VT86C926</para>
	</listitem>

	<listitem>
	  <para>3Com 3C501, 3C503 Etherlink II, 3C505 Etherlink/+, 3C507
	    Etherlink 16/TP, 3C509, 3C579, 3C589 (PCMCIA),
	    3C590/592/595/900/905/905B/905C PCI and EISA (Fast) Etherlink
	    III / (Fast) Etherlink XL, 3C980/3C980B Fast Etherlink XL
	    server adapter, 3CSOHO100-TX OfficeConnect adapter</para>
	</listitem>

	<listitem>
	  <para>Toshiba ethernet cards</para>
	</listitem>

	<listitem>
	  <para>PCMCIA ethernet cards from IBM and National Semiconductor
	    are also supported</para>
	</listitem>
      </itemizedlist>
    </sect2>

    <sect2 id="install-usb">
      <title>USB Peripherals</title>

      <para>A wide range of USB peripherals are supported.  Owing to the
        generic nature of most USB devices, with some exceptions any
	device of a given class will be supported even if not explicitly
	listed here.</para>

      <itemizedlist>
        <listitem>
	  <para>USB keyboards</para>
	</listitem>

	<listitem>
	  <para>USB mice</para>
	</listitem>

	<listitem>
	  <para>USB printers and USB to parallel printer conversion
	    cables</para>
	</listitem>

	<listitem>
	  <para>USB hubs</para>
	</listitem>
      </itemizedlist>

      <para>Motherboard chipsets:</para>

      <itemizedlist>
        <listitem>
	  <para>ALi Aladdin-V</para>
	</listitem>

	<listitem>
	  <para>Intel 82371SB (PIIX3) and 82371AB and EB (PIIX4)
	  chipsets</para>
	</listitem>

	<listitem>
	  <para>NEC uPD 9210 Host Controller</para>
	</listitem>

	<listitem>
	  <para>VIA 83C572 USB Host Controller</para>

	  <para>and any other UHCI or OHCI compliant motherboard chipset
	    (no exceptions known).</para>
	</listitem>
      </itemizedlist>

      <para>PCI plug-in USB host controllers</para>

      <itemizedlist>
        <listitem>
	  <para>ADS Electronics PCI plug-in card (2 ports)</para>
	</listitem>

	<listitem>
	  <para>Entrega PCI plug-in card (4 ports)</para>
	</listitem>
      </itemizedlist>

      <para>Specific USB devices reported to be working:</para>

      <itemizedlist>
        <listitem>
	  <para>Agiler Mouse 29UO</para>
	</listitem>

	<listitem>
	  <para>Andromeda hub</para>
	</listitem>

	<listitem>
	  <para>Apple iMac mouse and keyboard</para>
	</listitem>

	<listitem>
	  <para>ATen parallel printer adapter</para>
	</listitem>

	<listitem>
	  <para>Belkin F4U002 parallel printer adapter and Belkin
	    mouse</para>
	</listitem>

	<listitem>
	  <para>BTC BTC7935 keyboard with mouse port</para>
	</listitem>

	<listitem>
	  <para>Cherry G81-3504</para>
	</listitem>

	<listitem>
	  <para>Chic mouse</para>
	</listitem>

	<listitem>
	  <para>Cypress mouse</para>
	</listitem>

	<listitem>
	  <para>Entrega USB-to-parallel printer adapter</para>
	</listitem>

	<listitem>
	  <para>Genius Niche mouse</para>
	</listitem>

	<listitem>
	  <para>Iomega USB Zip 100 MB</para>
	</listitem>

	<listitem>
	  <para>Kensington Mouse-in-a-Box</para>
	</listitem>

	<listitem>
	  <para>Logitech M2452 keyboard</para>
	</listitem>

	<listitem>
	  <para>Logictech wheel mouse (3 buttons)</para>
	</listitem>

	<listitem>
	  <para>Logitech PS/2 / USB mouse (3 buttons)</para>
	</listitem>

	<listitem>
	  <para>MacAlly mouse (3 buttons)</para>
	</listitem>

	<listitem>
	  <para>MacAlly self-powered hub (4 ports)</para>
	</listitem>

	<listitem>
	  <para>Microsoft Intellimouse (3 buttons)</para>
	</listitem>

	<listitem>
	  <para>Microsoft keyboard</para>
	</listitem>

	<listitem>
	  <para>NEC hub</para>
	</listitem>

	<listitem>
	  <para>Trust Ami Mouse (3 buttons)</para>
	</listitem>
      </itemizedlist>
    </sect2>

    <sect2 id="install-isdn">
      <title>ISDN (European DSS1 [Q.921/Q.931] protocol)</title>

      <itemizedlist>
        <listitem>
	  <para>Asuscom I-IN100-ST-DV (experimental, may work)</para>
	</listitem>

	<listitem>
	  <para>Asuscom ISDNlink 128K</para>
	</listitem>

	<listitem>
	  <para>AVM A1</para>
	</listitem>

	<listitem>
	  <para>AVM Fritz!Card classic</para>
	</listitem>

	<listitem>
	  <para>AVM Fritz!Card PCI</para>
	</listitem>

	<listitem>
	  <para>AVM Fritz!Card PCMCIA (currently FreeBSD 3.x only)</para>
	</listitem>

	<listitem>
	  <para>AVM Fritz!Card PnP (currently FreeBSD 3.x only)</para>
	</listitem>

	<listitem>
	  <para>Creatix ISDN-S0/8</para>
	</listitem>

	<listitem>
	  <para>Creatix ISDN-S0/16</para>
	</listitem>

	<listitem>
	  <para>Creatix ISDN-S0 PnP</para>
	</listitem>

	<listitem>
	  <para>Dr.Neuhaus Niccy 1008</para>
	</listitem>

	<listitem>
	  <para>Dr.Neuhaus Niccy 1016</para>
	</listitem>

	<listitem>
	  <para>Dr.Neuhaus Niccy GO@ (ISA PnP)</para>
	</listitem>

	<listitem>
	  <para>Dynalink IS64PH (no longer maintained)</para>
	</listitem>

	<listitem>
	  <para>ELSA 1000pro ISA</para>
	</listitem>

	<listitem>
	  <para>ELSA 1000pro PCI</para>
	</listitem>

	<listitem>
	  <para>ELSA PCC-16</para>
	</listitem>

	<listitem>
	  <para>ITK ix1 micro (currently FreeBSD 3.x only)</para>
	</listitem>

	<listitem>
	  <para>ITK ix1 micro V.3 (currently FreeBSD 3.x only)</para>
	</listitem>

	<listitem>
	  <para>Sagem Cybermod (ISA PnP, may work)</para>
	</listitem>

	<listitem>
	  <para>Sedlbauer Win Speed</para>
	</listitem>

	<listitem>
	  <para>Siemens I-Surf 2.0</para>
	</listitem>

	<listitem>
	  <para>Stollman Tina-pp (under development)</para>
	</listitem>

	<listitem>
	  <para>Teles S0/8</para>
	</listitem>

	<listitem>
	  <para>Teles S0/16</para>
	</listitem>

	<listitem>
	  <para>Teles S0/16.3 (the <quote>c</quote> Versions - like 16.3c
	    - are unsupported!)</para>
	</listitem>

	<listitem>
	  <para>Teles S0 PnP (experimental, may work)</para>
	</listitem>

	<listitem>
	  <para>3Com/USRobotics Sportster ISDN TA intern (non-PnP
	    version)</para>
	</listitem>
      </itemizedlist>
    </sect2>

    <sect2 id="install-sound">
      <title>Sound Devices</title>

      <para>The following soundcards or codecs are supported (devices marked
        'experimental' are only supported in FreeBSD-CURRENT and might
        work only unstably):</para>

      <itemizedlist>
        <listitem>
          <para>16550 UART (Midi) (experimental, needs a trick in the hints
            file)</para>
        </listitem>
        
        <listitem>
          <para>Advance Asound 100, 110 and Logic ALS120</para>
        </listitem>
        
        <listitem>
          <para>Aureal Vortex1/Vortex2 and Vortex Advantage based soundcards
            by a
            <ulink url="http://www.cis.ohio-state.edu/~matey/au88x0/">third
            party driver</ulink></para>
        </listitem>

        <listitem>
          <para>Creative Labs SB16, SB32, SB AWE64 (including Gold),
            Vibra16, SB PCI (experimental), SB Live! (experimental)
            and most SoundBlaster compatible cards</para>
        </listitem>

        <listitem>
          <para>Creative Labs SB Midi Port (experimental), SB OPL3
            Synthesizer (experimental)</para>
        </listitem>

        <listitem>
          <para>Crystal Semiconductor CS461x/462x Audio Accelerator,
            the support for the CS461x Midi port is experimental</para>
        </listitem>
        
        <listitem>
          <para>Crystal Semiconductor CS428x Audio Controller</para>
        </listitem>
        
        <listitem>
          <para>CS4237, CS4236, CS4232, CS4231 (ISA)</para>
        </listitem>
        
	<listitem>
          <para>ENSONIQ AudioPCI ES1370/1371</para>
        </listitem>

        <listitem>
          <para>ESS ES1868, ES1869, ES1879, ES1888</para>
        </listitem>

        <listitem>
          <para>Gravis UltraSound PnP, MAX</para>
        </listitem>

        <listitem>
          <para>NeoMagic 256AV/ZX (PCI)</para>
        </listitem>

        <listitem>
          <para>OPTi931 (ISA)</para>
        </listitem>

        <listitem>
          <para>OSS-compatible sequencer (Midi) (experimental)</para>
        </listitem>

        <listitem>
          <para>Trident 4DWave DX/NX (PCI)</para>
        </listitem>

        <listitem>
          <para>Yahama OPL-SAx (ISA)</para>
        </listitem>
      </itemizedlist>
    </sect2>

    <sect2 id="install-misc">
      <title>Miscellaneous Devices</title>

      <itemizedlist>
        <listitem>
	  <para>AST 4 port serial card using shared IRQ</para>
	</listitem>

	<listitem>
	  <para>ARNET 8 port serial card using shared IRQ</para>
	</listitem>

	<listitem>
	  <para>ARNET (now Digiboard) Sync 570/i high-speed serial</para>
	</listitem>

	<listitem>
	  <para>Boca BB1004 4-Port serial card (Modems NOT
	    supported)</para>
	</listitem>

	<listitem>
	  <para>Boca IOAT66 6-Port serial card (Modems supported)</para>
	</listitem>

	<listitem>
	  <para>Boca BB1008 8-Port serial card (Modems NOT
	    supported)</para>
	</listitem>

	<listitem>
	  <para>Boca BB2016 16-Port serial card (Modems supported)</para>
	</listitem>

	<listitem>
	  <para>Cyclades Cyclom-y Serial Board</para>
	</listitem>

        <listitem>
          <para>Moxa SmartIO CI-104J 4-Port serial card</para>
        </listitem>

	<listitem>
	  <para>STB 4 port card using shared IRQ</para>
	</listitem>

	<listitem>
	  <para>SDL Communications RISCom/8 Serial Board</para>
	</listitem>

	<listitem>
	  <para>SDL Communications RISCom/N2 and N2pci high-speed sync
	    serial boards</para>
	</listitem>

	<listitem>
	  <para>Specialix SI/XIO/SX multiport serial cards, with both the
	    older SIHOST2.x and the new <quote>enhanced</quote>
	    (transputer based, aka JET) host cards; ISA, EISA and PCI are
	    supported</para>
	</listitem>

	<listitem>
	  <para>Stallion multiport serial boards:  EasyIO, EasyConnection
	    8/32 & 8/64, ONboard 4/16 and Brumby</para>
	</listitem>

	<listitem>
	  <para>Adlib, SoundBlaster, SoundBlaster Pro, ProAudioSpectrum,
	    Gravis UltraSound, and Roland MPU-401 sound cards</para>
	</listitem>

	<listitem>
	  <para>Connectix QuickCam</para>
	</listitem>

	<listitem>
	  <para>Matrox Meteor Video frame grabber</para>
	</listitem>

	<listitem>
	  <para>Creative Labs Video Spigot frame grabber</para>
	</listitem>

	<listitem>
	  <para>Cortex1 frame grabber</para>
	</listitem>

	<listitem>
	  <para>Various frame grabbers based on the Brooktree Bt848
	    and Bt878 chip</para>
	</listitem>

	<listitem>
	  <para>HP4020, HP6020, Philips CDD2000/CDD2660 and Plasmon CD-R
	    drives</para>
	</listitem>

	<listitem>
	  <para>Bus mice</para>
	</listitem>

	<listitem>
	  <para>PS/2 mice</para>
	</listitem>

	<listitem>
	  <para>Standard PC Joystick</para>
	</listitem>

	<listitem>
	  <para>X-10 power controllers</para>
	</listitem>

	<listitem>
	  <para>GPIB and Transputer drives</para>
	</listitem>

	<listitem>
	  <para>Genius and Mustek hand scanners</para>
	</listitem>

	<listitem>
	  <para>Floppy tape drives (some rather old models only, driver is
	    rather stale)</para>
	</listitem>

	<listitem>
	  <para>Lucent Technologies WaveLAN/IEEE 802.11 PCMCIA and ISA
	    standard speed (2Mbps) and turbo speed (6Mbps) wireless
	    network adapters and workalikes (NCR WaveLAN/IEEE 802.11,
	    Cabletron RoamAbout 802.11 DS)</para>

	  <note>
	    <para>The ISA versions of these adapters are actually PCMCIA
	      cards combined with an ISA to PCMCIA bridge card, so both
	      kinds of devices work with the same driver.</para>
	  </note>
	</listitem>
      </itemizedlist>
    </sect2>
  </sect1>

  <sect1 id="install-trouble">
    <title>Troubleshooting</title>

    <para>The following section covers basic installation troubleshooting,
      such as common problems people have reported.  There are also a few
      questions and answers for people wishing to dual-boot FreeBSD with
      MS-DOS.</para>

    <sect2>
      <title>What to do if something goes wrong...</title>

      <para>Due to various limitations of the PC architecture, it is
        impossible for probing to be 100% reliable, however, there are a
        few things you can do if it fails.</para>

      <para>Check the <link linkend="install-hw">supported
        hardware</link> list to make sure your hardware is
        supported.</para>

      <para>If your hardware is supported and you still experience
        lock-ups or other problems, reset your computer, and when the
        visual kernel configuration option is given, choose it.  This will
        allow you to go through your hardware and supply information to the
        system about it.  The kernel on the boot disks is configured
        assuming that most hardware devices are in their factory default
        configuration in terms of IRQs, IO addresses, and DMA channels.  If
        your hardware has been reconfigured, you will most likely need to
        use the configuration editor to tell FreeBSD where to find
        things.</para>

      <para>It is also possible that a probe for a device not present will
        cause a later probe for another device that is present to fail.  In
        that case, the probes for the conflicting driver(s) should be
        disabled.</para>

      <warning>
        <para>Do not disable any drivers you will need during the
          installation, such as your screen (<devicename>sc0</devicename>).
	  If the installation wedges or fails mysteriously after leaving
	  the configuration editor, you have probably removed or changed
	  something you should not have.  Reboot and try again.</para>
      </warning>

      <para>In configuration mode, you can:</para>

      <itemizedlist>
        <listitem>
          <para>List the device drivers installed in the kernel.</para>
        </listitem>

        <listitem>
          <para>Change device drivers for hardware that is not present in
	    your system.</para>
        </listitem>

        <listitem>
          <para>Change IRQs, DRQs, and IO port addresses used by a device
	    driver.</para>
        </listitem>
      </itemizedlist>

      <para>After adjusting the kernel to match your hardware
        configuration, type <command>Q</command> to boot with the new
        settings.  Once the installation has completed, any changes you
        made in the configuration mode will be permanent so you do not have
        to reconfigure every time you boot.  It is still highly likely that
        you will eventually want to build a <link
        linkend="kernelconfig">custom kernel</link>.</para>
    </sect2>
    
    <sect2>
      <title>MS-DOS User's Questions and Answers</title>

      <para>Many users wish to install FreeBSD on PCs inhabited by MS-DOS.
        Here are some commonly asked questions about installing FreeBSD on
        such systems.</para>

      <qandaset>
        <qandaentry>
	  <question>
	    <para>Help, I have no space!  Do I need to delete everything 
	      first?</para>
	  </question>

	  <answer>
	    <para>If your machine is already running MS-DOS and has little
	      or no free space available for the FreeBSD installation, all
	      hope is not lost!  You may find the FIPS utility, provided
	      in the <filename>tools</filename> directory on the FreeBSD
	      CDROM or various FreeBSD FTP sites to be quite
	      useful.</para>

	    <para>FIPS allows you to split an existing MS-DOS partition
	      into two pieces, preserving the original partition and
	      allowing you to install onto the second free piece.  You
	      first defragment your MS-DOS partition using the Windows
	      DEFRAG utility (go into Explorer, right-click on the
	      hard drive, and choose to defrag your
	      hard drive), or Norton Disk Tools. You then must run FIPS.  It
	      will prompt you for the rest of the information it needs.
	      Afterwards, you can reboot and install FreeBSD on the new
	      free slice.  See the <emphasis>Distributions</emphasis> menu
	      for an estimate of how much free space you will need for the
	      kind of installation you want.</para>

	      <para>There is also a <emphasis>very</emphasis> useful
	      product from <ulink
	      url="http://www.powerquest.com/">PowerQuest</ulink>
	      called <application>Partition Magic</application>. This
	      application has far more functionality than FIPS, and is
	      highly recommended if you plan to often add/remove
	      operating systems (like me). However, it does cost
	      money, and if you plan to install FreeBSD once and then
	      leave it there, FIPS will probably be fine for you.</para>
	  </answer>
	</qandaentry>

	<qandaentry>
	  <question>
	    <para>Can I use compressed MS-DOS filesystems from
	      FreeBSD?</para>
	  </question>

	  <answer>
	    <para>No.  If you are using a utility such as Stacker(tm) or
	      DoubleSpace(tm), FreeBSD will only be able to use whatever
	      portion of the filesystem you leave uncompressed.  The rest
	      of the filesystem will show up as one large file (the
	      stacked/double spaced file!).  <emphasis>Do not remove that
	      file or you will probably regret it
	      greatly!</emphasis></para>

	    <para>It is probably better to create another uncompressed
	      primary MS-DOS partition and use this for communications
	      between MS-DOS and FreeBSD.</para>
	  </answer>
	</qandaentry>

	<qandaentry>
	  <question>
	    <para>Can I mount my extended MS-DOS partition?</para>
	  </question>

	  <answer>
	    <para>Yes.  DOS extended partitions are mapped in at the end
	      of the other <quote>slices</quote> in FreeBSD, e.g., your
	      <devicename>D:</devicename> drive might be
	      <filename>/dev/da0s5</filename>, your
	      <devicename>E:</devicename> drive,
	      <filename>/dev/da0s6</filename>, and so on.  This example
	      assumes, of course, that your extended partition is on SCSI
	      drive 0.  For IDE drives, substitute <filename>ad</filename>
	      for <filename>da</filename> appropriately if installing
	      4.0-RELEASE or later, and substitute
	      <filename>wd</filename> for <filename>da</filename> if you
	      are installing a version of FreeBSD prior to 4.0.  You otherwise
	      mount extended partitions exactly like you would any other
	      DOS drive, for example:</para>

	    <screen>&prompt.root; <userinput>mount -t msdos /dev/ad0s5 /dos_d</userinput></screen>
	  </answer>
	</qandaentry>
      </qandaset>
    </sect2>
  </sect1>
</chapter>

<!-- 
     Local Variables:
     mode: sgml
     sgml-declaration: "../chapter.decl"
     sgml-indent-data: t
     sgml-omittag: nil
     sgml-always-quote-attributes: t
     sgml-parent-document: ("../book.sgml" "part" "chapter")
     End:
-->