summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-05-03 11:30:49 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-05-03 11:33:44 -0500
commitd033d5635090e5fb97f31c782d92cc9a37ca81e6 (patch)
treeea2c728268c8430b036167f7f2dad74972a8a9fc
parent8aba1ee4885e27fc6cf56745df209ee4441c18a0 (diff)
downloaddocs-d033d5635090e5fb97f31c782d92cc9a37ca81e6.tar.gz
docs-d033d5635090e5fb97f31c782d92cc9a37ca81e6.tar.bz2
docs-d033d5635090e5fb97f31c782d92cc9a37ca81e6.tar.xz
docs-d033d5635090e5fb97f31c782d92cc9a37ca81e6.zip
Inst Handbook: Add writing CDs on Linux/BSD (#74)
-rw-r--r--src/install/1_begin.xml4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/install/1_begin.xml b/src/install/1_begin.xml
index bbd4951..e901a51 100644
--- a/src/install/1_begin.xml
+++ b/src/install/1_begin.xml
@@ -43,7 +43,9 @@
</section>
<section>
<title>Using Linux or BSD</title>
- <para>TODO</para>
+ <para>On Linux or BSD systems, you can use either <command>cdrecord</command> or <command>cdrskin</command> to write the installation image to a CD via the command line. Both commands basically share the same syntax.</para>
+ <para>For example, to burn the image onto a CD at a speed of 4 and with verbose command output, run <command>cdrecord -v speed=4 <userinput>[image]</userinput></command> or <command>cdrskin -v speed=4 <userinput>[image]</userinput></command>, replacing <userinput>[image]</userinput> with the file name of the image you want to burn to the CD.</para>
+ <para>If there's only one optical disc drive on your system, it should be auto-detected. If not, find the device name using 'dmesg' or 'lsblk' and specify it using the 'dev' option. For example, if your optical device is <literal>/dev/sr0</literal>, run <command>cdrecord -v dev=/dev/sr0 speed=4 <userinput>[image]</userinput></command>.</para>
</section>
</section>
</chapter>