su -c 'yum -y install liveusb-creator'
liveusb-creator
on the command line. Enter the root password for your system when LiveUSB Creator prompts you for it.
su -c 'yum -y install livecd-tools'
/dev/disk/by-label
, or use the findfs
command:
findfs LABEL=MyLabel
dmesg
command shortly after connecting the media to your computer. After running the command, the device name (such as sdb
or sdc
) should appear in several lines towards the end of the output.
livecd-iso-to-disk
command to write the ISO image to the media:
su -c 'livecd-iso-to-disk the_image.iso
/dev/sdX1
'
sdX1
with the device name for the partition on the USB media. Most flash drives and external hard disks use only one partition. If you have changed this behavior or have oddly partitioned media, you may need to consult other sources of help.
/dev/disk/by-label
, or use the findfs
command:
findfs LABEL=MyLabel
dmesg
command shortly after connecting the media to your computer. After running the command, the device name (such as sdb
or sdc
) should appear in several lines towards the end of the output.
dd
command to transfer the boot ISO image to the USB device:
su -c 'dd if=path/image_name
.iso of=/dev/device
'
path/image_name
.iso is the boot ISO image file that you downloaded and device
is the device name for the USB flash drive. Ensure you specify the device name (such as sdc
), not the partition name (such as sdc1
). For example:
su -c 'dd if=~/Download/Fedora-19-x86_64-DVD.iso of=/dev/sdc'