4

I have downloaded Mac.OSX.Mountain.Lion.v10.8.3 and I have never burned a dmg file. How to burn this operating system in a dvd?

Braiam
  • 67,791
  • 32
  • 179
  • 269
user240623
  • 51
  • 1
  • 1
  • 2

4 Answers4

6

Open a terminal (Ctrl+Alt+T) and run the following commands:

  1. Install dmg2img:

    sudo apt-get install dmg2img
    
  2. Browse the folder where the file is located:

    cd PATH/TO/THE/FILE
    
  3. Next convert the .dmg to .img:

    dmg2img NAMEOFTHEFILE.dmg NAMEOFTHEFILE.img
    
  4. Create a directory to mount the image:

    mkdir /media/image
    
  5. Run the following:

    sudo modprobe hfsplus
    
  6. Mount the image:

    sudo mount -t hfsplus -o loop NAMEOFTHEFILE.img
    

    /media/image

  7. Download Brasero:

    sudo apt-get install brasero
    
  8. Create the .iso with from the previously mounted .img following this guide.

  9. Open Brasero and burn the image (.iso).

This is quite simple and you should get no troubles at all. Good luck.

Minnen
  • 529
2
sudo apt-get install dmg2img

convert dmg to iso

sudo dmg2img yourdvd.dmg yourdvd.iso

install dvd writing software in terminal

sudo apt-get install wodim

list your dvd device and note it down

wodim --devices

write your iso to dvd

wodim dev=/dev/cdrw -v -data yourdvd.iso
  • 1
    $ wodim --devices wodim: No such file or directory. Cannot open SCSI driver! For possible targets try 'wodim --devices' – Aaron Franke Jul 27 '18 at 03:14
1

You can convert any dmg to iso, according to this tutorial.

After that, you can handle the file like you are used to.

Lynob
  • 6,675
davidbaumann
  • 1,887
  • 1
  • 18
  • 31
0

All you should need to do is:

dmg2img example.dmg example.iso
Louis
  • 11