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 2.0k times
4 Answers
6
Open a terminal (Ctrl+Alt+T) and run the following commands:
Install
dmg2img:sudo apt-get install dmg2imgBrowse the folder where the file is located:
cd PATH/TO/THE/FILENext convert the
.dmgto.img:dmg2img NAMEOFTHEFILE.dmg NAMEOFTHEFILE.imgCreate a directory to mount the image:
mkdir /media/imageRun the following:
sudo modprobe hfsplusMount the image:
sudo mount -t hfsplus -o loop NAMEOFTHEFILE.img/media/image
Download Brasero:
sudo apt-get install braseroCreate the
.isowith from the previously mounted.imgfollowing this guide.Open Brasero and burn the image (
.iso).
This is quite simple and you should get no troubles at all. Good luck.
BeastOfCaerbannog
- 16,703
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
- 9,296
Dat Nguyen
- 21
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,775
davidbaumann
- 1,915