denari 发表于 2024-1-1 10:17

终端提取macOS Monterrey安装文件,制作U盘启动

Mac下,终端提取安装文件
打开窗口“终端”,复制和粘贴到以下命令:
softwareupdate --list-full-installers;echo;echo "Please enter version number you wish to download:";read;$(if [ -n "$REPLY" ]; then; echo "softwareupdate --fetch-full-installer --full-installer-version "$REPLY; fi);
从列表中的可用版本选择你所需要的版本
例如:输入12.7.1回车。
下载后的“Monterey”安装文件将保存在你的应用程序的文件夹里。

制作U盘启动

                                                                                                                                                根据你下载的具体 macOS,在“终端”中输入下面的一个命令。                                                                                                                                                
[*]请记得将命令中的 MyVolume 替换为你的宗卷名称。


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



页: [1]
查看完整版本: 终端提取macOS Monterrey安装文件,制作U盘启动