Refer to "da" instead of "sd". "Jazz" -> "Jaz"

PR:		docs/11215
Submitted by:	Chris Costello <chris@holly.dyndns.org>
This commit is contained in:
Nik Clayton 1999-05-16 13:40:15 +00:00
parent 419225d6bc
commit 083e477937
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=4900
3 changed files with 51 additions and 51 deletions
en/handbook/disks
en_US.ISO8859-1/books/handbook/disks
en_US.ISO_8859-1/books/handbook/disks

View file

@ -1,7 +1,7 @@
<!-- <!--
The FreeBSD Documentation Project The FreeBSD Documentation Project
$Id: chapter.sgml,v 1.5 1999-03-08 22:04:38 nik Exp $ $Id: chapter.sgml,v 1.6 1999-05-16 13:40:15 nik Exp $
--> -->
<chapter id="disks"> <chapter id="disks">
@ -18,9 +18,9 @@
<para>Login as user <username>root</username>. After you've installed the <para>Login as user <username>root</username>. After you've installed the
drive, inspect <filename>/var/run/dmesg.boot</filename> to ensure the new drive, inspect <filename>/var/run/dmesg.boot</filename> to ensure the new
disk was found. Continuing with our example, the newly added drive will disk was found. Continuing with our example, the newly added drive will
be <filename>sd1</filename> and we want to mount it on be <filename>da1</filename> and we want to mount it on
<filename>/1</filename>. (if you are adding an IDE drive substitute <filename>/1</filename>. (if you are adding an IDE drive substitute
<filename>wd</filename> for <filename>sd</filename>)</para> <filename>wd</filename> for <filename>da</filename>)</para>
<para>Because FreeBSD runs on IBM-PC compatible computers, it must take into <para>Because FreeBSD runs on IBM-PC compatible computers, it must take into
account the PC BIOS partitions. These are different from the traditional account the PC BIOS partitions. These are different from the traditional
@ -35,10 +35,10 @@
<command>fdisk</command> utility of the other operating system.</para> <command>fdisk</command> utility of the other operating system.</para>
<para>In the slice case the drive will be added as <para>In the slice case the drive will be added as
<filename>/dev/sd1s1e</filename>. This is read as: SCSI disk, unit number <filename>/dev/da1s1e</filename>. This is read as: SCSI disk, unit number
1 (second SCSI disk), slice 1 (PC BIOS partition 1), and 1 (second SCSI disk), slice 1 (PC BIOS partition 1), and
<filename>e</filename> BSD partition. In the dedicated case, the drive <filename>e</filename> BSD partition. In the dedicated case, the drive
will be added simply as <filename>/dev/sd1e</filename>.</para> will be added simply as <filename>/dev/da1e</filename>.</para>
<sect1> <sect1>
<title>Using sysinstall</title> <title>Using sysinstall</title>
@ -51,11 +51,11 @@
Configuration Menu</literal>, scroll down and select the Configuration Menu</literal>, scroll down and select the
<literal>Partition</literal> item. Next you should be presented with a <literal>Partition</literal> item. Next you should be presented with a
list of hard drives installed in your system. If you do not see list of hard drives installed in your system. If you do not see
<literal>sd1</literal> listed, you need to recheck your physical <literal>da1</literal> listed, you need to recheck your physical
installation and <command>dmesg</command> output in the file installation and <command>dmesg</command> output in the file
<filename>/var/run/dmesg.boot</filename>.</para> <filename>/var/run/dmesg.boot</filename>.</para>
<para>Select <literal>sd1</literal> to enter the <literal>FDISK Partition <para>Select <literal>da1</literal> to enter the <literal>FDISK Partition
Editor</literal>. Choose <literal>A</literal> to use the entire disk Editor</literal>. Choose <literal>A</literal> to use the entire disk
for FreeBSD. When asked if you want to <quote>remain cooperative with for FreeBSD. When asked if you want to <quote>remain cooperative with
any future possible operating systems</quote>, answer any future possible operating systems</quote>, answer
@ -114,21 +114,21 @@
&ldquo;appropriate&rdquo; any partition it finds which it doesn't &ldquo;appropriate&rdquo; any partition it finds which it doesn't
understand.</para> understand.</para>
<screen>&prompt.root; <userinput>dd if=/dev/zero of=/dev/rsd1 bs=1k count=1</userinput> <screen>&prompt.root; <userinput>dd if=/dev/zero of=/dev/rda1 bs=1k count=1</userinput>
&prompt.root; <userinput>disklabel -Brw sd1 auto</userinput> &prompt.root; <userinput>disklabel -Brw da1 auto</userinput>
&prompt.root; <userinput>disklabel -e sd</userinput>1 # create the `e' partition &prompt.root; <userinput>disklabel -e da1</userinput> # create the `e' partition
&prompt.root; <userinput>newfs -d0 /dev/rsd1e</userinput> &prompt.root; <userinput>newfs -d0 /dev/rda1e</userinput>
&prompt.root; <userinput>mkdir -p /1</userinput> &prompt.root; <userinput>mkdir -p /1</userinput>
&prompt.root; <userinput>vi /etc/fstab</userinput> # add an entry for /dev/sd1e &prompt.root; <userinput>vi /etc/fstab</userinput> # add an entry for /dev/da1e
&prompt.root; <userinput>mount /1</userinput></screen> &prompt.root; <userinput>mount /1</userinput></screen>
<para>An alternate method is:</para> <para>An alternate method is:</para>
<screen>&prompt.root; <userinput>dd if=/dev/zero of=/dev/rsd1 count=2</userinput> <screen>&prompt.root; <userinput>dd if=/dev/zero of=/dev/rda1 count=2</userinput>
&prompt.root; <userinput>disklabel /dev/rsd1 | disklabel -BrR sd1 /dev/stdin</userinput> &prompt.root; <userinput>disklabel /dev/rda1 | disklabel -BrR da1 /dev/stdin</userinput>
&prompt.root; <userinput>newfs /dev/rsd1e</userinput> &prompt.root; <userinput>newfs /dev/rda1e</userinput>
&prompt.root; <userinput>mkdir -p /1</userinput> &prompt.root; <userinput>mkdir -p /1</userinput>
&prompt.root; <userinput>vi /etc/fstab</userinput> # add an entry for /dev/sd1e &prompt.root; <userinput>vi /etc/fstab</userinput> # add an entry for /dev/da1e
&prompt.root; <userinput>mount /1</userinput></screen> &prompt.root; <userinput>mount /1</userinput></screen>
</sect2> </sect2>
</sect1> </sect1>
@ -143,7 +143,7 @@
</sect2> </sect2>
<sect2> <sect2>
<title>* Jazz Drives</title> <title>* Jaz Drives</title>
<para></para> <para></para>
</sect2> </sect2>

View file

@ -1,7 +1,7 @@
<!-- <!--
The FreeBSD Documentation Project The FreeBSD Documentation Project
$Id: chapter.sgml,v 1.5 1999-03-08 22:04:38 nik Exp $ $Id: chapter.sgml,v 1.6 1999-05-16 13:40:15 nik Exp $
--> -->
<chapter id="disks"> <chapter id="disks">
@ -18,9 +18,9 @@
<para>Login as user <username>root</username>. After you've installed the <para>Login as user <username>root</username>. After you've installed the
drive, inspect <filename>/var/run/dmesg.boot</filename> to ensure the new drive, inspect <filename>/var/run/dmesg.boot</filename> to ensure the new
disk was found. Continuing with our example, the newly added drive will disk was found. Continuing with our example, the newly added drive will
be <filename>sd1</filename> and we want to mount it on be <filename>da1</filename> and we want to mount it on
<filename>/1</filename>. (if you are adding an IDE drive substitute <filename>/1</filename>. (if you are adding an IDE drive substitute
<filename>wd</filename> for <filename>sd</filename>)</para> <filename>wd</filename> for <filename>da</filename>)</para>
<para>Because FreeBSD runs on IBM-PC compatible computers, it must take into <para>Because FreeBSD runs on IBM-PC compatible computers, it must take into
account the PC BIOS partitions. These are different from the traditional account the PC BIOS partitions. These are different from the traditional
@ -35,10 +35,10 @@
<command>fdisk</command> utility of the other operating system.</para> <command>fdisk</command> utility of the other operating system.</para>
<para>In the slice case the drive will be added as <para>In the slice case the drive will be added as
<filename>/dev/sd1s1e</filename>. This is read as: SCSI disk, unit number <filename>/dev/da1s1e</filename>. This is read as: SCSI disk, unit number
1 (second SCSI disk), slice 1 (PC BIOS partition 1), and 1 (second SCSI disk), slice 1 (PC BIOS partition 1), and
<filename>e</filename> BSD partition. In the dedicated case, the drive <filename>e</filename> BSD partition. In the dedicated case, the drive
will be added simply as <filename>/dev/sd1e</filename>.</para> will be added simply as <filename>/dev/da1e</filename>.</para>
<sect1> <sect1>
<title>Using sysinstall</title> <title>Using sysinstall</title>
@ -51,11 +51,11 @@
Configuration Menu</literal>, scroll down and select the Configuration Menu</literal>, scroll down and select the
<literal>Partition</literal> item. Next you should be presented with a <literal>Partition</literal> item. Next you should be presented with a
list of hard drives installed in your system. If you do not see list of hard drives installed in your system. If you do not see
<literal>sd1</literal> listed, you need to recheck your physical <literal>da1</literal> listed, you need to recheck your physical
installation and <command>dmesg</command> output in the file installation and <command>dmesg</command> output in the file
<filename>/var/run/dmesg.boot</filename>.</para> <filename>/var/run/dmesg.boot</filename>.</para>
<para>Select <literal>sd1</literal> to enter the <literal>FDISK Partition <para>Select <literal>da1</literal> to enter the <literal>FDISK Partition
Editor</literal>. Choose <literal>A</literal> to use the entire disk Editor</literal>. Choose <literal>A</literal> to use the entire disk
for FreeBSD. When asked if you want to <quote>remain cooperative with for FreeBSD. When asked if you want to <quote>remain cooperative with
any future possible operating systems</quote>, answer any future possible operating systems</quote>, answer
@ -114,21 +114,21 @@
&ldquo;appropriate&rdquo; any partition it finds which it doesn't &ldquo;appropriate&rdquo; any partition it finds which it doesn't
understand.</para> understand.</para>
<screen>&prompt.root; <userinput>dd if=/dev/zero of=/dev/rsd1 bs=1k count=1</userinput> <screen>&prompt.root; <userinput>dd if=/dev/zero of=/dev/rda1 bs=1k count=1</userinput>
&prompt.root; <userinput>disklabel -Brw sd1 auto</userinput> &prompt.root; <userinput>disklabel -Brw da1 auto</userinput>
&prompt.root; <userinput>disklabel -e sd</userinput>1 # create the `e' partition &prompt.root; <userinput>disklabel -e da1</userinput> # create the `e' partition
&prompt.root; <userinput>newfs -d0 /dev/rsd1e</userinput> &prompt.root; <userinput>newfs -d0 /dev/rda1e</userinput>
&prompt.root; <userinput>mkdir -p /1</userinput> &prompt.root; <userinput>mkdir -p /1</userinput>
&prompt.root; <userinput>vi /etc/fstab</userinput> # add an entry for /dev/sd1e &prompt.root; <userinput>vi /etc/fstab</userinput> # add an entry for /dev/da1e
&prompt.root; <userinput>mount /1</userinput></screen> &prompt.root; <userinput>mount /1</userinput></screen>
<para>An alternate method is:</para> <para>An alternate method is:</para>
<screen>&prompt.root; <userinput>dd if=/dev/zero of=/dev/rsd1 count=2</userinput> <screen>&prompt.root; <userinput>dd if=/dev/zero of=/dev/rda1 count=2</userinput>
&prompt.root; <userinput>disklabel /dev/rsd1 | disklabel -BrR sd1 /dev/stdin</userinput> &prompt.root; <userinput>disklabel /dev/rda1 | disklabel -BrR da1 /dev/stdin</userinput>
&prompt.root; <userinput>newfs /dev/rsd1e</userinput> &prompt.root; <userinput>newfs /dev/rda1e</userinput>
&prompt.root; <userinput>mkdir -p /1</userinput> &prompt.root; <userinput>mkdir -p /1</userinput>
&prompt.root; <userinput>vi /etc/fstab</userinput> # add an entry for /dev/sd1e &prompt.root; <userinput>vi /etc/fstab</userinput> # add an entry for /dev/da1e
&prompt.root; <userinput>mount /1</userinput></screen> &prompt.root; <userinput>mount /1</userinput></screen>
</sect2> </sect2>
</sect1> </sect1>
@ -143,7 +143,7 @@
</sect2> </sect2>
<sect2> <sect2>
<title>* Jazz Drives</title> <title>* Jaz Drives</title>
<para></para> <para></para>
</sect2> </sect2>

View file

@ -1,7 +1,7 @@
<!-- <!--
The FreeBSD Documentation Project The FreeBSD Documentation Project
$Id: chapter.sgml,v 1.5 1999-03-08 22:04:38 nik Exp $ $Id: chapter.sgml,v 1.6 1999-05-16 13:40:15 nik Exp $
--> -->
<chapter id="disks"> <chapter id="disks">
@ -18,9 +18,9 @@
<para>Login as user <username>root</username>. After you've installed the <para>Login as user <username>root</username>. After you've installed the
drive, inspect <filename>/var/run/dmesg.boot</filename> to ensure the new drive, inspect <filename>/var/run/dmesg.boot</filename> to ensure the new
disk was found. Continuing with our example, the newly added drive will disk was found. Continuing with our example, the newly added drive will
be <filename>sd1</filename> and we want to mount it on be <filename>da1</filename> and we want to mount it on
<filename>/1</filename>. (if you are adding an IDE drive substitute <filename>/1</filename>. (if you are adding an IDE drive substitute
<filename>wd</filename> for <filename>sd</filename>)</para> <filename>wd</filename> for <filename>da</filename>)</para>
<para>Because FreeBSD runs on IBM-PC compatible computers, it must take into <para>Because FreeBSD runs on IBM-PC compatible computers, it must take into
account the PC BIOS partitions. These are different from the traditional account the PC BIOS partitions. These are different from the traditional
@ -35,10 +35,10 @@
<command>fdisk</command> utility of the other operating system.</para> <command>fdisk</command> utility of the other operating system.</para>
<para>In the slice case the drive will be added as <para>In the slice case the drive will be added as
<filename>/dev/sd1s1e</filename>. This is read as: SCSI disk, unit number <filename>/dev/da1s1e</filename>. This is read as: SCSI disk, unit number
1 (second SCSI disk), slice 1 (PC BIOS partition 1), and 1 (second SCSI disk), slice 1 (PC BIOS partition 1), and
<filename>e</filename> BSD partition. In the dedicated case, the drive <filename>e</filename> BSD partition. In the dedicated case, the drive
will be added simply as <filename>/dev/sd1e</filename>.</para> will be added simply as <filename>/dev/da1e</filename>.</para>
<sect1> <sect1>
<title>Using sysinstall</title> <title>Using sysinstall</title>
@ -51,11 +51,11 @@
Configuration Menu</literal>, scroll down and select the Configuration Menu</literal>, scroll down and select the
<literal>Partition</literal> item. Next you should be presented with a <literal>Partition</literal> item. Next you should be presented with a
list of hard drives installed in your system. If you do not see list of hard drives installed in your system. If you do not see
<literal>sd1</literal> listed, you need to recheck your physical <literal>da1</literal> listed, you need to recheck your physical
installation and <command>dmesg</command> output in the file installation and <command>dmesg</command> output in the file
<filename>/var/run/dmesg.boot</filename>.</para> <filename>/var/run/dmesg.boot</filename>.</para>
<para>Select <literal>sd1</literal> to enter the <literal>FDISK Partition <para>Select <literal>da1</literal> to enter the <literal>FDISK Partition
Editor</literal>. Choose <literal>A</literal> to use the entire disk Editor</literal>. Choose <literal>A</literal> to use the entire disk
for FreeBSD. When asked if you want to <quote>remain cooperative with for FreeBSD. When asked if you want to <quote>remain cooperative with
any future possible operating systems</quote>, answer any future possible operating systems</quote>, answer
@ -114,21 +114,21 @@
&ldquo;appropriate&rdquo; any partition it finds which it doesn't &ldquo;appropriate&rdquo; any partition it finds which it doesn't
understand.</para> understand.</para>
<screen>&prompt.root; <userinput>dd if=/dev/zero of=/dev/rsd1 bs=1k count=1</userinput> <screen>&prompt.root; <userinput>dd if=/dev/zero of=/dev/rda1 bs=1k count=1</userinput>
&prompt.root; <userinput>disklabel -Brw sd1 auto</userinput> &prompt.root; <userinput>disklabel -Brw da1 auto</userinput>
&prompt.root; <userinput>disklabel -e sd</userinput>1 # create the `e' partition &prompt.root; <userinput>disklabel -e da1</userinput> # create the `e' partition
&prompt.root; <userinput>newfs -d0 /dev/rsd1e</userinput> &prompt.root; <userinput>newfs -d0 /dev/rda1e</userinput>
&prompt.root; <userinput>mkdir -p /1</userinput> &prompt.root; <userinput>mkdir -p /1</userinput>
&prompt.root; <userinput>vi /etc/fstab</userinput> # add an entry for /dev/sd1e &prompt.root; <userinput>vi /etc/fstab</userinput> # add an entry for /dev/da1e
&prompt.root; <userinput>mount /1</userinput></screen> &prompt.root; <userinput>mount /1</userinput></screen>
<para>An alternate method is:</para> <para>An alternate method is:</para>
<screen>&prompt.root; <userinput>dd if=/dev/zero of=/dev/rsd1 count=2</userinput> <screen>&prompt.root; <userinput>dd if=/dev/zero of=/dev/rda1 count=2</userinput>
&prompt.root; <userinput>disklabel /dev/rsd1 | disklabel -BrR sd1 /dev/stdin</userinput> &prompt.root; <userinput>disklabel /dev/rda1 | disklabel -BrR da1 /dev/stdin</userinput>
&prompt.root; <userinput>newfs /dev/rsd1e</userinput> &prompt.root; <userinput>newfs /dev/rda1e</userinput>
&prompt.root; <userinput>mkdir -p /1</userinput> &prompt.root; <userinput>mkdir -p /1</userinput>
&prompt.root; <userinput>vi /etc/fstab</userinput> # add an entry for /dev/sd1e &prompt.root; <userinput>vi /etc/fstab</userinput> # add an entry for /dev/da1e
&prompt.root; <userinput>mount /1</userinput></screen> &prompt.root; <userinput>mount /1</userinput></screen>
</sect2> </sect2>
</sect1> </sect1>
@ -143,7 +143,7 @@
</sect2> </sect2>
<sect2> <sect2>
<title>* Jazz Drives</title> <title>* Jaz Drives</title>
<para></para> <para></para>
</sect2> </sect2>