[install-guide] BZ#1036643 - Fixing the procedures for creating media with dd

pbokoc pbokoc at fedoraproject.org
Thu Dec 12 13:52:24 UTC 2013


commit 224dd402ce8b76207e434f854db96d7d6bd6fd31
Author: Petr Bokoc <pbokoc at redhat.com>
Date:   Thu Dec 12 14:53:32 2013 +0100

    BZ#1036643 - Fixing the procedures for creating media with dd

 en-US/Making_USB_media.xml          |    2 +-
 en-US/Procedure-dd_Image_to_USB.xml |    8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/en-US/Making_USB_media.xml b/en-US/Making_USB_media.xml
index c75a1cc..2875e6f 100644
--- a/en-US/Making_USB_media.xml
+++ b/en-US/Making_USB_media.xml
@@ -268,7 +268,7 @@
 					<para>
 						Run <application>livecd-iso-to-disk</application> to transfer the live image to the partition on your flash drive and make the flash drive bootable:
 					</para>
-<screen>./livecd-iso-to-disk /home/<replaceable>Username</replaceable>/Downloads/Fedora-&PRODVER;-i686-Live.iso /dev/sdc1</screen>
+<screen>./livecd-iso-to-disk /home/<replaceable>Username</replaceable>/Downloads/Fedora-Live-Desktop-x86_64-&PRODVER;-1.iso /dev/sdc1</screen>
 				</example>
 			</section>
 			<section id="Making_USB_Media-UNIX_Linux-other-dd">
diff --git a/en-US/Procedure-dd_Image_to_USB.xml b/en-US/Procedure-dd_Image_to_USB.xml
index b4b0d54..d01ab73 100644
--- a/en-US/Procedure-dd_Image_to_USB.xml
+++ b/en-US/Procedure-dd_Image_to_USB.xml
@@ -12,7 +12,7 @@
 		<para>
 			Find the flash drive's device name.  If the media has a volume name, use it to look up the device name in <filename class="directory">/dev/disk/by-label</filename>, or use the <command>findfs</command> command:
 		</para>
-<screen><command>findfs LABEL=<replaceable>MyLabel</replaceable></command></screen>
+		<screen><command>findfs LABEL=<replaceable>MyLabel</replaceable></command></screen>
 		<para>
 			If the media does not have a volume name or you do not know it, you can also use the <command>dmesg</command> command shortly after connecting the media to your computer. After running the command, the device name (such as <systemitem>sdb</systemitem> or <systemitem>sdc</systemitem>) should appear in several lines towards the end of the output.
 		</para>
@@ -21,11 +21,11 @@
 		<para>
 			Use the <command>dd</command> command to transfer the boot ISO image to the USB device:
 		</para>
-<screen><command>su -c 'dd if=<replaceable>path/image_name</replaceable>.iso of=/dev/<replaceable>device</replaceable>'</command></screen>
+		<screen><command>su -c 'dd if=<replaceable>path/image_name</replaceable>.iso of=/dev/<replaceable>device</replaceable> bs=<replaceable>block size</replaceable>'</command></screen>
 		<para>
-			where <replaceable>path/image_name</replaceable>.iso is the boot ISO image file that you downloaded and <filename><replaceable>device</replaceable></filename> is the device name for the USB flash drive. Ensure you specify the device name (such as <systemitem>sdc</systemitem>), not the partition name (such as <systemitem>sdc1</systemitem>). For example:
+			where <replaceable>path/image_name</replaceable>.iso is the boot ISO image file that you downloaded and <filename><replaceable>device</replaceable></filename> is the device name for the USB flash drive. Ensure you specify the device name (such as <systemitem>sdc</systemitem>), not the partition name (such as <systemitem>sdc1</systemitem>). The <option>bs</option> option specifies the block size; it can be omitted, but specifying it will speed up the process. For example:
 		</para>
-<screen><command>su -c 'dd if=~/Download/Fedora-&PRODVER;-x86_64-DVD.iso of=/dev/sdc'</command></screen>
+		<screen><command>su -c 'dd if=~/Downloads/Fedora-Live-Desktop-x86_64-&PRODVER;-1.iso of=/dev/sdc bs=512k'</command></screen>
 	</step>
 </procedure>
 


More information about the docs-commits mailing list