How to create a bootable Linux USB drive
How to create a bootable Linux USB drive
cp to copy the iso onto the drive no flashing or anything…
The cp command will write the ISO file directly onto the device. This is the official way that is recommended by Debian:
cp debian.iso /dev/sdX
sync
Woah…
Damn I’m sorry for questioning this method, I didn’t know.
/dev/sdX are just files. If you cp a file onto another file, it overwrites the data of the destination with the source. A block device represents the device itself, not the filesystem; if you wanted to put the ISO inside the filesystem, you’d have to mount it first.