0

So, I have an ISO that I want to write to a bootable USB stick. The problem is that the ISO does not have a partition table. From my understanding, this type of ISO should be written on a DVD. Can I write my ISO to my 8GB USB? I also tried it via "dd" and it did not work.

Edit: I tried it in Virtualbox and it worked. It means that the image is bootable.

Edit: Maybe add a partition table to the ISO?

stfn
  • 1
  • 3
  • Yes, you need to convert the plain ISO image into a Hybrid ISO image. See https://superuser.com/questions/410305/what-is-the-difference-between-the-usb-booting-mechanism-and-optical-disk-bootin – sawdust Jun 22 '19 at 09:23
  • @sawdust Thank you, I'll try that. – stfn Jun 28 '19 at 06:40
  • Unfortunately, the ISO is not Linux or BSD. It's a MacOS ISO. Still Unix-like, but it gives me this error: `bob@I-am-Bob:~/Downloads$ isohybrid OSX-Mavericks.iso isohybrid: OSX-Mavericks.iso: boot loader does not have an isolinux.bin hybrid signature. Note that isolinux-debug.bin does not support hybrid booting` – stfn Jun 28 '19 at 06:48

1 Answers1

0

try the following:

In FreeBSD:

dd if=./your-DVD.iso of=/dev/da0 bs=1m conv=sync where da0 is the USB stick

In Linux:

dd if=./your-DVD.iso of=/dev/sdX bs=1m where X is your USB stick.

NOTE the easiest way to discover which device name corresponds to your USB stick would be to perform an ls /dev before, and after inserting your USB stick.

somebody
  • 520
  • 2
  • 9