make macos 26 tahoe beta 1 bootable usb (1 Viewer)

tywebb

dangerman
Joined
Dec 7, 2003
Messages
139
Gender
Undisclosed
HSC
N/A
This morning apple announced macOS 26 Tahoe and released beta 1.

Here is the link for the full installer for the Tahoe beta 1: https://swcdn.apple.com/content/dow...7xchfjwh4244kwixjsut4boc/InstallAssistant.pkg

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

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

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

The command for future betas will probably change to

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

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

sudo /Applications/Install\ macOS\ Tahoe.app/Contents/Resources/createinstallmedia --volume /Volumes/Untitled
 
Last edited:

tywebb

dangerman
Joined
Dec 7, 2003
Messages
139
Gender
Undisclosed
HSC
N/A
here is how you can check the build number for InstallAssistant.pkg even before downloading it:

replace the g at the end of the link with a m to make a link to pkm file like this:


download the pkm file (much smaller than the pkg file), open it with textedit and you see this:

...version="25.0.5279.13"...

well we know the build is 25A5279m as that has already been published by apple at https://developer.apple.com/news/releases/ and as that website frequently changes, here is a screenshot

tahoe beta 1 build.png

so in the number 25.0.5279.13 in pkm file, the second number 0,1,2,... is A,B,C,... and the fourth number 1,2,3,... is a,b,c,...

hence the second number 0 is A and the fourth number 13 is m and so build is confirmed to indeed be 25A5279m
 

tywebb

dangerman
Joined
Dec 7, 2003
Messages
139
Gender
Undisclosed
HSC
N/A
how to find beta 1 full installer via terminal

run this in terminal

Code:
for file in $(curl -# https://swscan.apple.com/content/catalogs/others/index-16beta-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
you will see this:

Code:
            Build
            25A5279m
--
            OSVersion
            26.0
https://swcdn.apple.com/content/downloads/26/20/082-55599-A_UZPH7KLA4Q/fddo2aezqd7xchfjwh4244kwixjsut4boc/InstallAssistant.pkg
 
Last edited:

tywebb

dangerman
Joined
Dec 7, 2003
Messages
139
Gender
Undisclosed
HSC
N/A
how to find beta 1 full installer via terminal

run this in terminal

Code:
[CODE]for file in $(curl -# https://swscan.apple.com/content/catalogs/others/index-26seed-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
[/CODE]

you will see this:

Code:
            Build
            25A5279m
--
            OSVersion
            26.0
https://swcdn.apple.com/content/downloads/26/20/082-55599-A_UZPH7KLA4Q/fddo2aezqd7xchfjwh4244kwixjsut4boc/InstallAssistant.pkg
terminal command has changed for the beta 2 that came out today

run this instead

Code:
for file in $(curl -# https://swscan.apple.com/content/catalogs/others/index-26seed-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
then you see this for the beta 2

Code:
            Build
            25A5295e
--
            OSVersion
            26.0
https://swcdn.apple.com/content/downloads/48/60/082-62552-A_EMRHUZQE63/olsval9x51g10i8oplpeakcon8gqp1agei/InstallAssistant.pkg
 

tywebb

dangerman
Joined
Dec 7, 2003
Messages
139
Gender
Undisclosed
HSC
N/A
beta 3 came out today but there is a rosetta bug preventing apple silicon macs from updating

there is a workaround however

first disable sip

then move these to trash:

/Library/Apple/usr/share/rosetta
/Library/Apple/usr/libexec

but don't delete the trash

then update to beta 3 and put the 2 rosetta folders back

restart to get rosetta working again

reenable sip if u want to
 

tywebb

dangerman
Joined
Dec 7, 2003
Messages
139
Gender
Undisclosed
HSC
N/A
apple has re-released the update so if u try it now the delete rosetta workaround may no longer be necessary
 

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

Top