Important — Enable Extra Packages for Enterprise Linux
Note — This Method Is Not Destructive
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.
Important — Enable Extra Packages for Enterprise Linux
Note — This Method Is Not Destructive
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'
Warning — These instructions could destroy data
Note
/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 bs=block size'
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
). The bs
option specifies the block size; it can be omitted, but specifying it will speed up the process. For example:
su -c 'dd if=~/Downloads/Fedora-Live-Desktop-x86_64-20-1.iso of=/dev/sdc bs=512k'