Skip to content

Instantly share code, notes, and snippets.

@mamemomonga
Last active October 15, 2021 00:53
Show Gist options
  • Save mamemomonga/ab41bfaf14552d3fb73c43fcb186bfc7 to your computer and use it in GitHub Desktop.
Save mamemomonga/ab41bfaf14552d3fb73c43fcb186bfc7 to your computer and use it in GitHub Desktop.
Big SurのISOイメージを作成する

Big SurのISOイメージを作成する

bigsur.isoはVMware Fusionで利用でき、またEtcherなどでUSBメモリに書き込むと、クリーンインストール用のメディアとして利用できる。ちなみに一般的なMacBookでの起動時ディスク選択はoptionキーを押しながら電源ON

$ hdiutil create -o ./bigsur -size 20g -layout SPUD -fs HFS+J -type SPARSE
$ hdiutil attach ./bigsur.sparseimage -noverify -mountpoint /Volumes/installBigSur
$ sudo '/Applications/Install macOS Big Sur.app/Contents/Resources/createinstallmedia' --volume /Volumes/installBigSur
$ hdiutil detach '/Volumes/Install macOS Big Sur'

アンマウントできんかったらmacOS再起動

$ hdiutil convert ./bigsur.sparseimage -format UDTO -o ./bigsur.cdr
$ mv bigsur.cdr bigsur.iso
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment