you are viewing a single comment's thread
view the rest of the comments
[–] -4 points 2 years ago (1 child)

The only thing you would have achieved that was would be to copy an iso file onto your stick. EFI or Boot doesn't know how to do anything with it.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 4 points 2 years ago (1 child)

    A lot of Linux ISOs are hybrid images which can be booted if flashed directly to a USB stick.

  • source
  • parent
  • hideshow 2 child comments
  • [–] -2 points 2 years ago (1 child)

    Op was just using cp to copy the iso onto the drive no flashing or anything...

  • source
  • parent
  • hideshow 2 child comments
  • [–] 4 points 2 years ago* (1 child)

    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

    Source: https://www.debian.org/releases/stable/amd64/ch04s03.en.html

  • source
  • parent
  • hideshow 2 child comments
  • [–] 3 points 2 years ago (1 child)

    Woah...

    Damn I'm sorry for questioning this method, I didn't know.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 4 points 2 years ago (1 child)

    This works because block devices like /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.

  • source
  • parent
  • hideshow 2 child comments