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'