aboutsummaryrefslogtreecommitdiff
path: root/en_US.ISO8859-1/books/handbook/disks/chapter.xml
diff options
context:
space:
mode:
authorDru Lavigne <dru@FreeBSD.org>2014-04-24 13:49:22 +0000
committerDru Lavigne <dru@FreeBSD.org>2014-04-24 13:49:22 +0000
commita90c196ae00fff7e1b66d7a4e12516a11fe10bab (patch)
tree7629852f065daa0fbd6a3313dbd2496159c6d148 /en_US.ISO8859-1/books/handbook/disks/chapter.xml
parent9e40b5d913edf2b833c1962831ca152b09ec40a6 (diff)
downloaddoc-a90c196ae00fff7e1b66d7a4e12516a11fe10bab.tar.gz
doc-a90c196ae00fff7e1b66d7a4e12516a11fe10bab.zip
Move raw data cds into Using Data cds section.
Update reference in FAQ. Fix title names for 2 new references in FAQ. Still need to tech review the rest of this chapter and update the examples. More commits to come. Sponsored by: iXsystems
Notes
Notes: svn path=/head/; revision=44643
Diffstat (limited to 'en_US.ISO8859-1/books/handbook/disks/chapter.xml')
-rw-r--r--en_US.ISO8859-1/books/handbook/disks/chapter.xml180
1 files changed, 89 insertions, 91 deletions
diff --git a/en_US.ISO8859-1/books/handbook/disks/chapter.xml b/en_US.ISO8859-1/books/handbook/disks/chapter.xml
index 1fcdc6b583..fe5e1ec6cd 100644
--- a/en_US.ISO8859-1/books/handbook/disks/chapter.xml
+++ b/en_US.ISO8859-1/books/handbook/disks/chapter.xml
@@ -914,92 +914,6 @@ scsibus1:
</note>
</sect2>
- <sect2 xml:id="duplicating-audiocds">
- <title>Duplicating Audio <acronym>CD</acronym>s</title>
-
- <para>To duplicate an audio <acronym>CD</acronym>, extract the
- audio data from the <acronym>CD</acronym> to a series of
- files, then write these files to a blank
- <acronym>CD</acronym>. The process is slightly different for
- <acronym>ATAPI</acronym> and <acronym>SCSI</acronym>
- drives.</para>
-
- <procedure>
- <title><acronym>SCSI</acronym> Drives</title>
-
- <step>
- <para>Use <command>cdda2wav</command> to extract the
- audio:</para>
-
- <screen>&prompt.user; <userinput>cdda2wav -vall -D2,0 -B -Owav</userinput></screen>
- </step>
-
- <step>
- <para>Use <command>cdrecord</command> to write the
- <filename>.wav</filename> files:</para>
-
- <screen>&prompt.user; <userinput>cdrecord -v dev=<replaceable>2,0</replaceable> -dao -useinfo *.wav</userinput></screen>
-
- <para>Make sure that <replaceable>2,0</replaceable> is set
- appropriately, as described in <xref
- linkend="cdrecord"/>.</para>
- </step>
- </procedure>
-
- <procedure>
- <title><acronym>ATAPI</acronym> Drives</title>
-
- <note>
- <para>With the help of the <link
- linkend="atapicam">ATAPI/CAM module</link>,
- <command>cdda2wav</command> can also be used on
- <acronym>ATAPI</acronym> drives. This tool is usually a
- better choice for most of users, as it supports jitter
- correction and endianness, than the method proposed
- below.</para>
- </note>
-
- <step>
- <para>The <acronym>ATAPI</acronym> <acronym>CD</acronym>
- driver makes each track available as
- <filename>/dev/acd<replaceable>d</replaceable>t<replaceable>nn</replaceable></filename>,
- where <replaceable>d</replaceable> is the drive number,
- and <replaceable>nn</replaceable> is the track number
- written with two decimal digits, prefixed with zero as
- needed. So the first track on the first disk is
- <filename>/dev/acd0t01</filename>, the second is
- <filename>/dev/acd0t02</filename>, the third is
- <filename>/dev/acd0t03</filename>, and so on.</para>
-
- <para>Make sure the appropriate files exist in
- <filename>/dev</filename>. If the entries are missing,
- force the system to retaste the media:</para>
-
- <screen>&prompt.root; <userinput>dd if=/dev/acd0 of=/dev/null count=1</userinput></screen>
- </step>
-
- <step>
- <para>Extract each track using &man.dd.1;, making sure to
- specify a block size when extracting the files:</para>
-
- <screen>&prompt.root; <userinput>dd if=/dev/acd0t01 of=track1.cdr bs=2352</userinput>
-&prompt.root; <userinput>dd if=/dev/acd0t02 of=track2.cdr bs=2352</userinput>
-...</screen>
- </step>
-
- <step>
- <para>Burn the extracted files to disk using
- <command>cdrecord</command>. Specify that these are audio
- files, and that <command>cdrecord</command> should fixate
- the disk when finished:</para>
-<!--
-Update example for cdrecord
- <screen>&prompt.root; <userinput>burncd -f <replaceable>/dev/acd0</replaceable> audio track1.cdr track2.cdr <replaceable>...</replaceable> fixate</userinput></screen>
- -->
- </step>
- </procedure>
- </sect2>
-
<sect2 xml:id="mounting-cd">
<title>Using Data <acronym>CD</acronym>s</title>
@@ -1081,14 +995,12 @@ Update example for cdrecord
<para>This tells the <acronym>SCSI</acronym> bus to pause 15
seconds during boot, to give the <acronym>CD-ROM</acronym>
drive every possible chance to answer the bus reset.</para>
- </sect2>
-
- <sect2 xml:id="rawdata-cd">
- <title>Burning Raw Data CDs</title>
+ <note>
<para>It is possible to burn a file directly to
<acronym>CD</acronym>, without creating an ISO 9660 file
- system. Some people do this for backup purposes. This
+ system. This is known as burning a raw data
+ <acronym>CD</acronym>. Some people do this for backup purposes. This
command runs more quickly than burning a standard
<acronym>CD</acronym>.</para>
<!--
@@ -1107,7 +1019,93 @@ Update example for cdrecord
<acronym>CD</acronym>, or to share the data with another
operating system, &man.mkisofs.8; must be used as described
above.</para>
+ </note>
</sect2>
+
+ <sect2 xml:id="duplicating-audiocds">
+ <title>Duplicating Audio <acronym>CD</acronym>s</title>
+ <para>To duplicate an audio <acronym>CD</acronym>, extract the
+ audio data from the <acronym>CD</acronym> to a series of
+ files, then write these files to a blank
+ <acronym>CD</acronym>. The process is slightly different for
+ <acronym>ATAPI</acronym> and <acronym>SCSI</acronym>
+ drives.</para>
+
+ <procedure>
+ <title><acronym>SCSI</acronym> Drives</title>
+
+ <step>
+ <para>Use <command>cdda2wav</command> to extract the
+ audio:</para>
+
+ <screen>&prompt.user; <userinput>cdda2wav -vall -D2,0 -B -Owav</userinput></screen>
+ </step>
+
+ <step>
+ <para>Use <command>cdrecord</command> to write the
+ <filename>.wav</filename> files:</para>
+
+ <screen>&prompt.user; <userinput>cdrecord -v dev=<replaceable>2,0</replaceable> -dao -useinfo *.wav</userinput></screen>
+
+ <para>Make sure that <replaceable>2,0</replaceable> is set
+ appropriately, as described in <xref
+ linkend="cdrecord"/>.</para>
+ </step>
+ </procedure>
+
+ <procedure>
+ <title><acronym>ATAPI</acronym> Drives</title>
+
+ <note>
+ <para>With the help of the <link
+ linkend="atapicam">ATAPI/CAM module</link>,
+ <command>cdda2wav</command> can also be used on
+ <acronym>ATAPI</acronym> drives. This tool is usually a
+ better choice for most of users, as it supports jitter
+ correction and endianness, than the method proposed
+ below.</para>
+ </note>
+
+ <step>
+ <para>The <acronym>ATAPI</acronym> <acronym>CD</acronym>
+ driver makes each track available as
+ <filename>/dev/acd<replaceable>d</replaceable>t<replaceable>nn</replaceable></filename>,
+ where <replaceable>d</replaceable> is the drive number,
+ and <replaceable>nn</replaceable> is the track number
+ written with two decimal digits, prefixed with zero as
+ needed. So the first track on the first disk is
+ <filename>/dev/acd0t01</filename>, the second is
+ <filename>/dev/acd0t02</filename>, the third is
+ <filename>/dev/acd0t03</filename>, and so on.</para>
+
+ <para>Make sure the appropriate files exist in
+ <filename>/dev</filename>. If the entries are missing,
+ force the system to retaste the media:</para>
+
+ <screen>&prompt.root; <userinput>dd if=/dev/acd0 of=/dev/null count=1</userinput></screen>
+ </step>
+
+ <step>
+ <para>Extract each track using &man.dd.1;, making sure to
+ specify a block size when extracting the files:</para>
+
+ <screen>&prompt.root; <userinput>dd if=/dev/acd0t01 of=track1.cdr bs=2352</userinput>
+&prompt.root; <userinput>dd if=/dev/acd0t02 of=track2.cdr bs=2352</userinput>
+...</screen>
+ </step>
+
+ <step>
+ <para>Burn the extracted files to disk using
+ <command>cdrecord</command>. Specify that these are audio
+ files, and that <command>cdrecord</command> should fixate
+ the disk when finished:</para>
+<!--
+Update example for cdrecord
+ <screen>&prompt.root; <userinput>burncd -f <replaceable>/dev/acd0</replaceable> audio track1.cdr track2.cdr <replaceable>...</replaceable> fixate</userinput></screen>
+ -->
+ </step>
+ </procedure>
+ </sect2>
</sect1>
<sect1 xml:id="creating-dvds">