如何创建 macOS 的安装 ISO 映像?
-
从应用商店下载 macOS 安装程序
这通常会将安装程序下载到该文件夹中。如果您的系统不是这种情况,请在后续命令中替换正确的路径。/Applications
-
创建一个临时卷来保存安装程序*.dmg
hdiutil create -o /tmp/Monterey -size 16384m -volname Monterey -layout SPUD -fs HFS+Jcreated: /tmp/Monterey.dmg
-
挂载刚刚创建的卷
hdiutil attach /tmp/Monterey.dmg -noverify -mountpoint /Volumes/Monterey/dev/disk5 Apple_partition_scheme /dev/disk5s1 Apple_partition_map /dev/disk5s2 Apple_HFS /Volumes/Monterey
-
将安装媒体复制到卷
sudo /Applications/Install\ macOS\ Monterey.app/Contents/Resources/createinstallmedia --volume /Volumes/Monterey --noint