I have a bootable dmg image and I need to burn it to a double layer DVD (the only one I have right now).
I don't have Mac just my Ubuntu PC and I heard it's possible but searching google didn't answer my question. So would you please tell me how can I do that without damaging the file or the only DVD I have right now?
3 Answers
The easiest way to do this seems to be converting the dmg to an iso file.
Managing Disk Images on the Ubuntu wiki explains this very well for different formats including dmg.
2I know this is 4 years later, but if I was pointed here others will be too.
- Download *.dmg.
sudo apt-get install dmg2imgdmg2img *.dmg *.imgbrasero(make data file... burn as *.iso)gparted(select USB - unmount - make FAT32)- Mount the USB device.
sudo add-apt-repository ppa:gezakovacs/ppasudo apt-get updatesudo apt-get install unetbootinsudo unetbootin(select disk image,point to *iso, your usb device should be in the top level of the drop down list, and burn it)- It will 'hang' in the middle and then it will install complete, so don't rush to judge and cancel while its in the middle of processing ;)
You could try all2iso. You open a terminal and write
dmg2iso filename.dmg filename.isoAnd that's all. It will be bootable, I have not tried with a .dmg file, but I've tried with other filetypes and all2iso. 1