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?
Asked
Active
Viewed 1.9k times
4
-
it's 5gb, you can't burn it to dvd, you have to use usb, unless you have some special dvd, what is the size of your dvd? – Lynob Jan 27 '14 at 19:02
-
hey i have double dvd of 8.5gb – user240623 Jan 27 '14 at 19:07
-
1Can you select the solution? – davidbaumann Dec 07 '15 at 18:35
4 Answers
6
Open a terminal (Ctrl+Alt+T) and run the following commands:
Install
dmg2img
:sudo apt-get install dmg2img
Browse the folder where the file is located:
cd PATH/TO/THE/FILE
Next convert the
.dmg
to.img
:dmg2img NAMEOFTHEFILE.dmg NAMEOFTHEFILE.img
Create a directory to mount the image:
mkdir /media/image
Run the following:
sudo modprobe hfsplus
Mount the image:
sudo mount -t hfsplus -o loop NAMEOFTHEFILE.img
/media/image
Download Brasero:
sudo apt-get install brasero
Create the
.iso
with from the previously mounted.img
following this guide.Open Brasero and burn the image (
.iso
).
This is quite simple and you should get no troubles at all. Good luck.

BeastOfCaerbannog
- 14,585

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

Sumeet Deshmukh
- 8,866

Dat Nguyen
- 21
-
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

Evandro Silva
- 9,612

Louis
- 11
-
The ISO file that came out of my 4.7 GB DMG is too big to fit on a DVD, it's 5.1 GB now. – Aaron Franke Jul 27 '18 at 03:16