make bootable golden gate usb installer (2 Viewers)

tywebb

dangerman
Joined
Dec 7, 2003
Messages
534
Gender
Undisclosed
HSC
N/A
This morning apple announced MacOS Golden Gate but did not explain how to make bootable golden gate usb installer

You can make a Golden Gate bootable USB installer by first formatting a 32GB or 64GB usb as Mac OS Extended (Journaled) and naming it Untitled.

After downloading the Golden Gate Beta 1 installer (which so far is nameless, even though we now know it has the name Golden Gate) you can run this in Terminal to make the bootable USB:

sudo /Applications/Install\ macOS\ 27\ Beta.app/Contents/Resources/createinstallmedia --volume /Volumes/Untitled

The command for future betas will probably change to

sudo /Applications/Install\ macOS\ Golden\ Gate\ Beta.app/Contents/Resources/createinstallmedia --volume /Volumes/Untitled

and then with public release (or even release candidates) to

sudo /Applications/Install\ macOS\ Golden\ Gate.app/Contents/Resources/createinstallmedia --volume /Volumes/Untitled

To find beta full installer you may run code in terminal

Code:
for file in $(curl -# https://swscan.apple.com/content/catalogs/others/index-27seed-1.sucatalog | grep com_apple_MobileAsset_MacSoftwareUpdate.plist | grep -Evw '(com_apple_MobileAsset_MacSoftwareUpdate.plist.integrityDataV1)' | sed -e s/"<string>"//g -e s/"<\/string>"//g -e s/\ //g); do
curl -s $file | egrep -A 1 -m 2 '(>Build<|OSVersion)' | sed -e s/"<string>"//g -e s/"<\/string>"//g -e s/\ //g | sed -e s/"<key>"//g -e s/"<\/key>"//g -e s/\ //g
echo $file | sed -e "s/com_apple_MobileAsset_MacSoftwareUpdate.plist/InstallAssistant.pkg/g"
done
much later when public release happens to get public release full installer change this to

Code:
for file in $(curl -# https://swscan.apple.com/content/catalogs/others/index-27-1.sucatalog | grep com_apple_MobileAsset_MacSoftwareUpdate.plist | grep -Evw '(com_apple_MobileAsset_MacSoftwareUpdate.plist.integrityDataV1)' | sed -e s/"<string>"//g -e s/"<\/string>"//g -e s/\ //g); do
curl -s $file | egrep -A 1 -m 2 '(>Build<|OSVersion)' | sed -e s/"<string>"//g -e s/"<\/string>"//g -e s/\ //g | sed -e s/"<key>"//g -e s/"<\/key>"//g -e s/\ //g
echo $file | sed -e "s/com_apple_MobileAsset_MacSoftwareUpdate.plist/InstallAssistant.pkg/g"
done
 

tywebb

dangerman
Joined
Dec 7, 2003
Messages
534
Gender
Undisclosed
HSC
N/A
result for beta 1:

boot to startup manager and it looks like this

1 copy 44.png

so then with continue i get to this

2 copy 18.png

then do Install macOS 27 Beta and we get to this

3 copy 9.png

i think the name golden gate probably will be added in beta 2
 

Users Who Are Viewing This Thread (Users: 1, Guests: 1)

Top