MacOS原版镜像下载

如何创建 macOS 的安装 ISO 映像?

镜像下载地址:https://mirrors.dtops.cc/iso/MacOS/daliansky_macos/

  1. 从应用商店下载 macOS 安装程序

    这通常会将安装程序下载到该文件夹中。如果您的系统不是这种情况,请在后续命令中替换正确的路径。/Applications

  2. 创建一个临时卷来保存安装程序*.dmg

    hdiutil create -o /tmp/Monterey -size 16384m -volname Monterey -layout SPUD -fs HFS+J
    created: /tmp/Monterey.dmg
    
  3. 挂载刚刚创建的卷

    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
    
  4. 将安装媒体复制到卷

    sudo /Applications/Install\ macOS\ Monterey.app/Contents/Resources/createinstallmedia --volume /Volumes/Monterey --noint

你可能感兴趣的:(操作系统,macos)