MacOS create bootable dvd
Jump to navigation
Jump to search
Create a Bootable ISO image of MacOS
Open Terminal and run the follow commands:
sudo -s # will ask for the user password hdiutil create -o /tmp/HighSierra.cdr -size 5200m -layout SPUD -fs HFS+J hdiutil attach /tmp/HighSierra.cdr.dmg -noverify -mountpoint /Volumes/install_build /Applications/Install\ macOS\ High\ Sierra.app/Contents/Resources/createinstallmedia --volume /Volumes/install_build. # answer Y to the question hdiutil detach /Volumes/Install\ macOS\ High\ Sierra hdiutil convert /tmp/HighSierra.cdr.dmg -format UDTO -o ~/Desktop/HighSierra.iso mv ~/Desktop/HighSierra.iso.cdr ~/Desktop/HighSierra.iso rm -f /tmp/HighSierra.cdr.dmg exit
References
- https://web.archive.org/web/20180302034518/https://www.contrib.andrew.cmu.edu/~somlo/OSXKVM/
- http://osxdaily.com/2017/09/27/download-complete-macos-high-sierra-installer/
- https://gist.github.com/julianxhokaxhiu/6ed6853f3223d0dd5fdffc4799b3a877
- https://www.howtogeek.com/289594/how-to-install-macos-sierra-in-virtualbox-on-windows-10/