1

I am trying to "burn" the ISO recovery media file from Paragon Hard Disk Manager to a USB flash drive, but balena Etcher warns:

The image does not appear to contain a partition table, and might not be recognized or bootable by your device.

enter image description here

Indeed, I have not been able to boot from the resulting USB flash drive.

What could be the issue and how can I get it to be bootable?


  • Using Paragon Hard Disk Manager (version 17.10.2) Recovery Media Builder
  • Paragon can output to an ISO file or removable flash media (eg. USB flash drive)
  • Building directly to a USB flash drive is bootable
  • The ISO file is bootable by a (VirtualBox) virtual machine when connected as a live CD/DVD
adatum
  • 325

2 Answers2

1

A workaround is to use Ventoy to create a bootable USB flash drive which can then in turn boot the Paragon ISO file. An added benefit is that multiple ISO files can be contained simultaneously on the USB flash drive.

Another solution could be to use isohybrid -u [ISO filename] on linux to make the ISO 9660 file a hybrid ISO. This has worked for me with other ISOs, but in this case I was getting an error "unable to find efi image". Since Ventoy got the job done I didn't investigate further.

adatum
  • 325
-2

Balena etcher wants an iso which looks like a "linux distro" iso.

The Paragon one is built on something else (WINPE).

You could use another software to write the iso in block mode, like Rufus in DD mode (if you're on Windows) or just use dd (on Linux) to write directly on the USB drive

Venix
  • 35
  • 7