How do we create a LIVE USB on LINUX? (using command line "dd")
i'm reading on the internet you type...
Insert your USB drive into your computer and use ‘df’ or ‘lsblk’ from the command line to determine the device name your flash drive has been assigned, e.g. /dev/sdb, sdc, etc. in my case the USB drive shows up on /media/asher/gentoo
Make sure the drive is not mounted. If necessary, unmount it with:
sudo umount /dev/<device_name>
Write the .iso image to the flash drive:
sudo dd if=/path/to/distro.iso of=/dev/<device_name> bs=1M
this does seem to do something however it doesn't write the LIVE USB ISO to the USB DRIVE
THANKS FOR THE LIVE USB HELP!
.iso
file on to the drive you created. – graham Mar 16 '24 at 09:42usb-creator-gtk
orusb-creator-kde
. It can help you identify the target drive. See also this link. – sudodus Mar 16 '24 at 15:42dd
: it is a powerful but also very dangerous tool, because there is no final checkpoint, where you can double-check, that you have identified the correct target device. There are many reports about people who have overwritten valuable data because they have selected the wrong device.dd
does what you tell it to do without questions, so when you tell it to overwrite [the drive and/or partition that contains] the family pictures it will do so. If you are using Ubuntu Server, you can use mkusb-nox. – sudodus Mar 16 '24 at 15:59