Question

I'm trying to create a Big Sur installer flash drive. All the tutorials tend to gloss over how to download the installer, but I'm finding that since this Mac is already upgraded, I can't download it again. How can I get ahold of the installer file? Only looking to download from Apple, not a third party. Thanks!

Was it helpful?

Solution

How can I download the macOS Big Sur installer on a Mac which is already running Big Sur?

I'm finding that since this Mac is already upgraded, I can't download it again. How can I get ahold of the installer file?

Using a clean install of macOS Big Sur and then attempting to download the macOS Big Sur installer on the running occurrence of it, I was unable to do it using the methods described in the answers by bmike and Nimesh Neema in this thread.

I then tried using Terminal and the softwareupdate command:

sudo softwareupdate -d --fetch-full-installer --full-installer-version 11.0.1

I got the same "Update not found" error message as with the other methods.

What I tried next was to use the third-party python script that downloads the various packages directly from Apple's servers and assembles them into the installer app.

Note that I did not completely download it as I already have the installer and no need for the to download it again at this point, however the fact that is was downloading the packages, including the biggest one which was 11.3G in size, I'll assume the script will finish correctly as this script has been available on the Internet and in use for some time now and ifs still being maintained.

Using the installinstallmacos.py python script from GitHub:

In Terminal I change directory to where I download the extracted macadmin-scripts-main.zip and executed is as:

macadmin-scripts-main % sudo ./installinstallmacos.py

A bunch of stuff scrolled on the screen to stop at:

 #      ProductID    Version    Build   Post Date  Title
 1      001-15219    10.15.5  19F2200  2020-06-15  macOS Catalina
 2      001-68446    10.15.7    19H15  2020-11-11  macOS Catalina
 3      001-04366    10.15.4  19E2269  2020-05-04  macOS Catalina
 4      061-86291    10.15.3  19D2064  2020-03-23  macOS Catalina
 5      041-91758    10.13.6    17G66  2019-10-19  macOS High Sierra
 6      001-57224    10.15.7     19H4  2020-10-27  macOS Catalina
 7      061-26589    10.14.6   18G103  2019-10-14  macOS Mojave
 8      001-51042    10.15.7     19H2  2020-09-24  macOS Catalina
 9      001-36735    10.15.6  19G2006  2020-08-06  macOS Catalina
10      001-83532     11.0.1    20B50  2020-11-19  macOS Big Sur
11      041-88800    10.14.4  18E2034  2019-10-23  macOS Mojave
12      041-90855    10.13.5   17F66a  2019-10-23  Install macOS High Sierra Beta
13      061-26578    10.14.5  18F2059  2019-10-14  macOS Mojave
14      001-36801    10.15.6  19G2021  2020-08-12  macOS Catalina

Choose a product to download (1-14): 10

I chose 10 and it proceed to download the packages directly from Apple's servers.

While in Terminal you will see exactly what it's downloading and see it's coming directly from Apple's servers.

Assuming it's going to create the /Applications/Install macOS Big Sur.app application bundle, you would then use the following command in Terminal to create the installer:

sudo /Applications/Install\ macOS\ Big\ Sur.app/Contents/Resources/createinstallmedia --volume /Volumes/MyVolume

Changing MyVolume in the command to the actual name of the volume of your USB drive been used for the installer.

See How to create a bootable installer for macOS for additional details.

OTHER TIPS

You can download the official macOS Big Sur installer from Apple by using the following steps:

  1. On your Mac, open the Mac App Store app, search for Big Sur and click on the Big Sur app to access the macOS Big Sur app page.

    You can also use this link to directly access the macOS Big Sur app on the Mac Appe Store:

    If the App Store app doesn't launch automatically, you can click on the View in Mac App Store button on the above webpage.

    enter image description here

  2. Click on the GET button.

    macOS Big Sur on Mac App Store

  3. Clicking the GET button would automatically open the Software Update preference pane under System Preferences app.

  4. Click on the Download button to download the macOS Big Sur installer.

    enter image description here

  5. The Software Update preference pane would start downloading the installer. You can view the download progress here. If you wish to cancel the download, you can do so by clicking on the circular button with a cross shown just ahead of the progress bar.

    enter image description here

  6. One the installer is downloaded, the same can be found under the /Applications folder with the name Install macOS Big Sur.app.

Icon Daemon is right, but one thing has been missed - do not directly launch the installer after downloading. To create a Big Sur installer, here is the details:

  1. Search for macOS Big Sur in App Store. (you'll see only "view" if you already run macOS 11. You need to click the tab to get into the interface, and then see "Get".)
  2. Click on the Get button on the upper right, and the Software Update system preference will open.
  3. Click the Download button. The download may take a while.
  4. After the download is complete and the installer launches, DO NOT click the Continue button.
  5. Quit the installer by pressing Command-Q.
  6. Go to your Applications folder and you should check and find an “Install macOS Big Sur” app.
  7. Launch the Terminal app.
  8. Select and copy the following (remember to replace "Untitled" with your disk name):
sudo /Applications/Install\ macOS\ Big\ Sur.app/Contents/Resources/createinstallmedia --volume /Volumes/Untitled -- /Applications/Install\ macOS\ Big\ Sur.app
  1. Type in your password and allowing disk erase to complete.

I was wondering the same thing you did. So when I ran the command "sudo softwareupdate -d --fetch-full-installer --full-installer-version 11.0.1" the same error showed up "update not found".

so I ran this command "sudo softwareupdate -d --fetch-full-installer --list-full-installers". It came up with the list of updates that were available.

For some reason they changed the naming convention to 11.1 instead of 11.0.1. so to get your command to work, it has to be

"sudo softwareupdate -d --fetch-full-installer --full-installer-version 11.1"

Let me know if that works for you.

Hammy

Finally I handled it. Download Big Sur from Big Sur Apple Server and then run sudo /Applications/Install\ macOS\ Big\ Sur.app/Contents/Resources/createinstallmedia --volume /Volumes/Untitled -- /Applications/Install\ macOS\ Big\ Sur.app command from terminal. It runs smoothly.

Downloading any recent installer is quite easy since Apple lists them all on a web page. Big Sur is at the top of the list.

The current OS is always featured close to where you choose an older version, Grabbing a fresh copy of the installer is quite handy for many reasons.

enter image description here

Licensed under: CC-BY-SA with attribution
Not affiliated with apple.stackexchange
scroll top