Planning a clean install of macOS Sequoia on your Mac? Whether you’re troubleshooting, starting fresh, or just like keeping things tidy, this step-by-step guide walks you through the entire process β from downloading the full installer to creating a bootable USB and wiping your Mac.
π macOS Version History
To help you keep track of macOS releases:
macOS Version | Release Name | Release Date |
---|---|---|
macOS 10.12 | Sierra | September 20, 2016 |
macOS 10.13 | High Sierra | September 25, 2017 |
macOS 10.14 | Mojave | September 24, 2018 |
macOS 10.15 | Catalina | October 7, 2019 |
macOS 11 | Big Sur | November 12, 2020 |
macOS 12 | Monterey | October 25, 2021 |
macOS 13 | Ventura | October 24, 2022 |
macOS 14 | Sonoma | September 26, 2023 |
macOS 15 | Sequoia | September 16, 2024 |
Note: Release dates refer to official public releases, not beta or developer versions.
π¦ DMG vs PKG β What’s the Difference?
Before downloading the installer, it’s helpful to understand two common macOS formats:
DMG (Disk Image)
- Simulates a physical disk (like a CD or USB).
- Doesnβt recognize file structures; it’s a raw bit-for-bit image.
- When mounted, it appears as a virtual external drive.
PKG (Package)
- Structured installation file with metadata.
- Knows which files it contains and where they should go.
- Executes an installer to copy files to their proper locations.
In this guide, weβre working with a PKG file, specifically InstallAssistant.pkg, which installs the full macOS Sequoia installer.
β¬οΈ Download the macOS Sequoia Full Installer
Head to Mr. Macintosh and download the latest full installer under:
macOS Sequoia PUBLIC Full Installer
βInstallAssistant.pkg
- This file is hosted on Appleβs servers and is the same version you’d get from the App Store.
- It works for both Intel and Apple Silicon Macs.
- After running the
.pkg
, you’ll find Install macOS Sequoia.app in your Applications folder.
π‘ Note: The InstallAssistant.pkg
method has been standard since macOS Big Sur. Earlier versions like Catalina or Mojave use a different approach.
πΎ Prepare a USB Drive (32GB+)
Step 1: Choose a USB Stick
The full installer is ~17GB, so:
- β 16GB is too small.
- β Use a 32GB USB stick or larger.
Step 2: Convert MBR to GPT (If Needed)
macOS bootable drives must use the GUID Partition Table (GPT). To convert:
β οΈ Warning: This will erase all data on your USB drive.
- List Disks:
diskutil list
- Unmount the USB:
diskutil unmountDisk /dev/diskX
- Erase & Convert to GPT:
diskutil partitionDisk /dev/diskX GPT JHFS+ USB_Drive 100%
- Replace
diskX
with your actual USB disk number. GPT
β Sets the partition scheme to GUID Partition Table.JHFS+
β Formats the drive as Mac OS Extended (Journaled) (you can change it toExFAT
,APFS
, etc.).USB_Drive
β The name of the drive.100%
β Uses the entire disk for this partition.
- Verify Partition Scheme:
diskutil info /dev/diskX
Check that it says:
Partition Map: GPT
π½ Create a Bootable Installer
-
Plug in your prepared USB stick.
-
Open Disk Utility and format it as APFS, name it:
macOS Sequoia installer
. -
Run this Terminal command:
sudo /Applications/Install\ macOS\ Sequoia.app/Contents/Resources/createinstallmedia --volume /Volumes/macOS\ Sequoia\ installer
- Enter your password and wait for the process to complete. This may take several minutes.
π Now you have a bootable macOS Sequoia USB installer!
π Backup Your Mac
Before wiping anything, back up your data. You can use:
- Time Machine
- A portable SSD (as you did!)
- Or manually copy your
~/Documents
,Downloads
, Desktop, etc.
π§Ή Erase Your Mac
Now youβre ready to wipe your startup disk. Follow the method based on your Mac type:
π Apple Silicon or Intel Macs with T2 Chip
- Go to Apple Menu > System Settings
- Navigate to General > Transfer or Reset
- Click Erase All Content and Settings
- Follow the on-screen instructions
β Make sure only the USB boot disk appears at startup β this confirms your Mac is clean and ready.
π» Intel-based Macs (No T2 Chip)
- Shut down the Mac.
- Hold Command (β) + R and press the power button to boot into Recovery Mode.
- Choose Disk Utility from the macOS Utilities menu.
- Select your startup disk and Erase it using the APFS format.
π οΈ Install macOS Sequoia
You’re now ready to install:
- Insert the USB installer.
- Reboot your Mac:
- Apple Silicon: Hold power until startup options appear.
- Intel: Hold Option (β₯) while powering on.
- Select the USB installer.
- Follow the on-screen instructions to install macOS Sequoia.
π How to Reinstall Later
If you ever need to reinstall Sequoia again:
- Boot from the USB installer you created.
- Or enter Recovery Mode and choose Reinstall macOS Sequoia.
β Final Tips
- Donβt skip the backup!
- Make sure your USB drive is formatted correctly (GPT + APFS recommended).
- If something goes wrong, try re-downloading the installer or using a different USB port.