当前位置: 首页>>技术教程>>正文


如何在 Ubuntu 上创建 OS X Mountain Lion 可启动 USB 驱动器?

, , , ,

问题描述

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

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

最佳思路

当您想要创建 LiveUSB 时,您需要一个 .iso 映像来制作它。 Mac 镜像是 .dmg 文件,因此您必须将此文件转换为 .iso ,然后安装。

安装 DMG2IMG

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

转换图像

使用 dmg2img,您将创建一个 .img 文件,该文件将具有 same format 作为 .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 驱动器,some 特定于 PC/MBR 启动 (Bootcamp),其中 Mac 和自 Windows 8 以来的较新 PC 需要/支持 UEFI 启动。

相关问题:AskDifferent \u2013 Official way to obtain an OS X ISO file

次佳思路

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

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

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/14131.html,未经允许,请勿转载。