Replace sd by da for SCSI disks.
PR: docs/12818 Submitted by: chris@calldei.com
This commit is contained in:
parent
e49e431805
commit
0b84ff33bd
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=5261
1 changed files with 14 additions and 14 deletions
|
@ -1,4 +1,4 @@
|
|||
<!-- $Id: admin.sgml,v 1.26 1999-07-28 12:36:46 jesusr Exp $ -->
|
||||
<!-- $Id: admin.sgml,v 1.27 1999-07-28 13:04:15 jesusr Exp $ -->
|
||||
<!-- The FreeBSD Documentation Project -->
|
||||
|
||||
<sect>
|
||||
|
@ -103,7 +103,7 @@
|
|||
<p>if it's a floppy, or this:
|
||||
|
||||
<verb>
|
||||
mount -t msdos /dev/sd2s4 /zip
|
||||
mount -t msdos /dev/da2s4 /zip
|
||||
</verb>
|
||||
|
||||
<p>for a ZIP disk with the factory configuration.
|
||||
|
@ -111,7 +111,7 @@
|
|||
<p>For other disks, see how they're laid out using <tt/fdisk/ or
|
||||
<tt>/stand/sysinstall</tt>.
|
||||
|
||||
<p>The rest of the examples will be for a ZIP drive on sd2, the third
|
||||
<p>The rest of the examples will be for a ZIP drive on da2, the third
|
||||
SCSI disk.
|
||||
|
||||
<p>Unless it's a floppy, or a removable you plan on sharing with
|
||||
|
@ -126,7 +126,7 @@
|
|||
and just use the BSD partitioning:
|
||||
|
||||
<verb>
|
||||
dd if=/dev/zero of=/dev/rsd2 count=2
|
||||
dd if=/dev/zero of=/dev/rda2 count=2
|
||||
disklabel -Brw sd2 auto
|
||||
</verb>
|
||||
|
||||
|
@ -139,13 +139,13 @@
|
|||
using the whole disk:
|
||||
|
||||
<verb>
|
||||
newfs /dev/rsd2c
|
||||
newfs /dev/rda2c
|
||||
</verb>
|
||||
|
||||
<p>and mount it:
|
||||
|
||||
<verb>
|
||||
mount /dev/sd2c /zip
|
||||
mount /dev/da2c /zip
|
||||
</verb>
|
||||
|
||||
<p>and it's probably a good idea to add a line like this to
|
||||
|
@ -154,7 +154,7 @@
|
|||
future:
|
||||
|
||||
<verb>
|
||||
/dev/sd2c /zip ffs rw,noauto 0 0
|
||||
/dev/da2c /zip ffs rw,noauto 0 0
|
||||
</verb>
|
||||
|
||||
<sect1>
|
||||
|
@ -163,12 +163,12 @@
|
|||
<p>The secondary DOS partitions are found after ALL the primary
|
||||
partitions. For example, if you have an "E" partition as the
|
||||
second DOS partition on the second SCSI drive, you need to create
|
||||
the special files for "slice 5" in /dev, then mount /dev/sd1s5:
|
||||
the special files for "slice 5" in /dev, then mount /dev/da1s5:
|
||||
|
||||
<verb>
|
||||
# cd /dev
|
||||
# ./MAKEDEV sd1s5
|
||||
# mount -t msdos /dev/sd1s5 /dos/e
|
||||
# mount -t msdos /dev/da1s5 /dos/e
|
||||
</verb>
|
||||
|
||||
<sect1>
|
||||
|
@ -220,7 +220,7 @@
|
|||
FAT partition, under, say, <tt>/mnt</tt>.
|
||||
|
||||
<verb>
|
||||
dd if=/dev/rsd0a of=/mnt/bootsect.bsd bs=512 count=1
|
||||
dd if=/dev/rda0a of=/mnt/bootsect.bsd bs=512 count=1
|
||||
</verb>
|
||||
|
||||
<p>Reboot into DOS or NT. NTFS users copy the <tt/bootsect.bsd/
|
||||
|
@ -267,8 +267,8 @@
|
|||
``<tt>loader=/boot/chain.b</tt>'' to the LILO entry.
|
||||
For example:
|
||||
<verb>
|
||||
other=/dev/sdb4
|
||||
table=/dev/sdb
|
||||
other=/dev/dab4
|
||||
table=/dev/dab
|
||||
loader=/boot/chain.b
|
||||
label=FreeBSD
|
||||
</verb>
|
||||
|
@ -278,7 +278,7 @@
|
|||
For example, if your FreeBSD SCSI disk is probed by BIOS as BIOS
|
||||
disk 1, at the FreeBSD boot loader prompt you need to specify:
|
||||
<verb>
|
||||
Boot: 1:sd(0,a)/kernel
|
||||
Boot: 1:da(0,a)/kernel
|
||||
</verb>
|
||||
|
||||
<p>On FreeBSD 2.2.5 and later, you can configure <htmlurl
|
||||
|
@ -385,7 +385,7 @@
|
|||
this for example with
|
||||
|
||||
<verb>
|
||||
dd if=/dev/zero of=/dev/rsd0 count=15
|
||||
dd if=/dev/zero of=/dev/rda0 count=15
|
||||
</verb>
|
||||
|
||||
<p>Alternatively, the undocumented DOS ``feature''
|
||||
|
|
Loading…
Reference in a new issue