Зачем конвертировать ISO в DMG?
DMG is the native disk-image format on macOS, handled natively by Finder and Disk Utility. Converting an ISO to DMG allows working with the disc contents using standard macOS tools without third-party software. The conversion is far more common in the opposite direction - DMG to ISO for use on Windows or Linux.
Способы конвертации ISO в DMG
hdiutil FREE
Run hdiutil convert input.iso -format UDTO -o output in Terminal, then rename output.cdr to output.dmg. Mount with hdiutil attach output.dmg to verify.
AnyToISO APP
Open AnyToISO, choose 'Convert image to ISO/DMG', load the .iso, select DMG as output format, and click Convert.
Программы, которые конвертируют ISO
Об этих форматах
Файл ISO - это посекторная копия оптического диска (CD, DVD или Blu-ray), сохраненная в виде одного файла. В Windows 8 и более поздних версиях щелкните по нему правой кнопкой мыши и…
Открыть детали .ISO →Файл DMG - это образ диска Apple, стандартный контейнер для распространения приложений Mac. На Mac дважды щелкните по нему, чтобы смонтировать образ, затем перетащите приложение в папку…
Открыть детали .DMG →Качество и на что обратить внимание
- If the ISO is a bootable Windows or Linux installer, the boot record and El Torito catalog do not carry over; the resulting DMG will contain the files but will not boot on a Mac.
- The
hdiutil UDTOformat produces a CD/DVD-R master with a.cdrextension by default; renaming to.dmgworks for mounting but the internal format differs from a native HFS+/APFS DMG. - File names, folder structure, and file data survive the conversion intact; macOS extended attributes and resource forks are absent in the source ISO so nothing extra is lost.
Часто задаваемые вопросы
Why does hdiutil produce a .cdr file instead of .dmg?
UDTO format hdiutil writes is a CD/DVD-R master and defaults to the .cdr extension; renaming it to .dmg is required for Finder and Disk Utility to treat it as a standard disk image.