Created
June 12, 2020 16:10
-
-
Save default-work/6eb7ae2fd891fec57c9ba20251bfff1b to your computer and use it in GitHub Desktop.
Install macOS 10.15 Catalina on VMware
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create a DMG Disk Image | |
hdiutil create -o /tmp/Catalina -size 8500m -volname Catalina -layout SPUD -fs HFS+J | |
# Mount it to your macOS | |
hdiutil attach /tmp/Catalina.dmg -noverify -mountpoint /Volumes/Catalina | |
# Create macOS Catalina Installer | |
sudo /Applications/Install\ macOS\ Catalina.app/Contents/Resources/createinstallmedia --volume /Volumes/Catalina --nointeraction | |
# Unmount Catalina Disk | |
hdiutil detach /volumes/Install\ macOS\ Catalina | |
# Convert the dmg file to a iso file | |
hdiutil convert /tmp/Catalina.dmg -format UDTO -o ~/Desktop/Catalina.cdr | |
# Rename and Move to Desktop | |
mv ~/Desktop/Catalina.cdr ~/Desktop/Catalina.iso |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment