Why won't bootable DVD image files burned on USB stock boot?

0

Suppose I have DVD iso file. As far as I understand, these non-hybrid iso files don't contain GPT or MBR ar the beginning, instead they have their own speciffic file system and some partition table. Is that true?

What difference does it make if I burn this image byte-by-byte with dd to DVD or USB? Why doesn't firmware (BIOS/UEFI) beheave the same way when it tries to find bootloader on the device, be it HDD, SSD, USB or DVD? If it can boot from DVD, why wouldn't it boot from other devices the same way if it contains the same image?

Edit: Note that I talk speciffically about DVD image files. Hybrid image files work properly, since they contain GPT or MBR at the beginning and look just like HDD layout.

Kristaps Čivkulis

Posted 2018-02-16T20:13:52.133

Reputation: 1

3

Possible duplicate of what is the difference between the usb booting mechanism and optical disk booting mechanism?

– Kamil Maciorowski – 2018-02-16T20:54:08.147

Answers

0

Because it's an ISO file.

While ISO files are simply just a DVD "image", it's technically a single file until it gets burned to a DVD. Once you burn the DVD, it is no longer an ISO file.

During the process of checking your bootable drives, the BIOS is looking for a directory that meets certain criteria. Your ISO file may contain an image of a directory, but not an actual directory.

So how do you circumvent this?

Simply by extracting the directory and files from the disc image onto your flash drive. Your BIOS/UEFI is extremely limited on its capabilities; as in that it doesn't have the software to provide it the ability to read image files.

K.Dᴀᴠɪs

Posted 2018-02-16T20:13:52.133

Reputation: 396

You misunderstood my question. Even after dd'ing this DVD image to USB (dd if=filename.iso of=/dev/sdb) it will not boot. But when I burn it to DVD, it works. Why is it so? If BIOS can find that speciffic directory on DVD, why can't it also find it on USB? – Kristaps Čivkulis – 2018-02-16T20:47:49.430

@kristapuciitis Because DVDs and USBs have different boot mechanisms. – DavidPostill – 2018-02-16T20:59:42.780