Can I convert a dmg file to iso in terminal?

I use dmg2img to convert a dmg file. What package will convert a dmg 2 iso?

2 Answers

Follow the steps below.

Just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:

sudo apt-get install dmg2img

Once installed, run the following command:

dmg2img <file_name>.dmg

That will convert the .dmg to ,img file in ISO format. Then just run

mv <file_name>.img <file_name>.iso
3

In order to convert the dmg to iso you need:

1) Convert the dmg to img using dmg2img

you can install it using:sudo apt-get install dmg2img

Then (if your dmg is named image.dmg in the current folder):

dmg2img image.dmg image.img

2) To mount the img

mkdir /media/image

sudo modprobe hfsplus

sudo mount -t hfsplus -o loop image.img /media/image

3) To burn the files in /media/image coming from the mount to an iso file:

You may use brasero for that step. You can install it using:

sudo apt-get install brasero

Detailed instructions can be found there:

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like