安装 DMG2IMG

安装 DMG2IMG

我已经知道如何在 Mac OS X 上执行此操作(网上有很多说明)。

但是可以在 Ubuntu 上做到这一点吗?如果可以,怎么做?

答案1

因为您要创建 LiveUSB,所以您需要一个.iso映像来制作它。Mac 映像是一个.dmg文件,因此您必须转换此文件进入.iso,然后安装它。

安装 DMG2IMG

DMG2IMG 12.dmg图像转换为.iso图像。要安装,请打开终端并输入以下命令:sudo apt-get install dmg2img

转换图像

dmg2img将创建一个.img文件,该文件将具有相同格式作为.iso文件,您只需替换扩展名。

在终端中输入以下命令或粘贴经过必要修改的脚本:

# Replace "OriginalFile.dmg" with the filename including the extension
# of your file. The extension will be replaced where necessary unless
# you want to specify the filenames yourself.

filename="OriginalFile.dmg"

# Replace with your file name and it will create the IMG file
dmg2img -i "${filename}" -o "${filename%.dmg}.img"

# Note that the extension of the first file is ".img"!
mv "${filename%.dmg}.img" "${filename%.dmg}.iso"

使用 ISO 映像制作 LiveUSB

现在您已经有了图像.iso,您可以使用它来制作 LiveUSB。有几种工具和答案可以帮助您创建可启动的 USB 驱动器,一些特定于 PC/MBR 启动(Bootcamp),其中 Mac 和 Windows 8 以后的较新的 PC 需要/支持 UEFI 启动。

相关问题:AskDifferent –获取 OS X ISO 文件的官方方式

答案2

为什么不只是转换后的dd文件.img

sudo dd if=/path/to/orig.img of=/dev/s**

相关内容