How to Install macOS from a USB Drive
Installing macOS from a USB drive is one of the most reliable ways to perform a clean installation, upgrade a Mac that can't reach the internet, or revive a machine that won't boot normally. It's more involved than a standard App Store upgrade, but the process is well-documented and reproducible once you understand what's actually happening at each step.
What "Installing from USB" Actually Means
When you install macOS the typical way, your Mac downloads the installer directly from Apple's servers during setup. A bootable USB installer packages that same installer onto a flash drive so your Mac can boot from it independently — no internet required at installation time.
This matters in a few situations:
- You're doing a clean install and want to wipe the drive first
- You're installing on multiple Macs without re-downloading each time
- The Mac has a damaged macOS installation and won't boot normally
- You're on a slow or metered connection and want to download once
The USB drive becomes a self-contained boot volume, not just a file carrier.
What You'll Need Before You Start
Hardware and software requirements:
- A USB flash drive with at least 16 GB of storage (the drive will be erased)
- A Mac to create the bootable drive on (running a compatible macOS version)
- The full macOS installer app (downloaded from the Mac App Store or Apple's website)
- Administrator access on the Mac you're preparing
The macOS installer you download from the App Store is typically a small stub by default. You need the full installer — usually around 12–13 GB depending on the version. For recent versions like Ventura, Sonoma, or Sequoia, the full installer can be obtained directly from Apple's support pages or by downloading through System Preferences/System Settings on a compatible Mac.
Step 1: Download the Full macOS Installer
Open the Mac App Store and search for the macOS version you want. Click "Get" or "Download." The installer will appear in your Applications folder as something like Install macOS Sonoma.
⚠️ If the installer launches automatically after downloading, quit it before proceeding. You need the installer app itself, not the setup wizard.
Step 2: Format the USB Drive
Insert your USB drive and open Disk Utility (found in Applications → Utilities).
- Select your USB drive from the left sidebar — select the drive itself, not a volume under it
- Click Erase
- Name it something simple like
MyVolume - Set the format to Mac OS Extended (Journaled)
- Set the scheme to GUID Partition Map
- Click Erase to confirm
This prepares the drive in the format the createinstallmedia command expects.
Step 3: Create the Bootable Installer Using Terminal
This is the core step. Apple provides a built-in command-line tool inside every macOS installer for exactly this purpose.
Open Terminal and run the appropriate command for your macOS version. The general structure looks like this:
sudo /Applications/Install macOS [VersionName].app/Contents/Resources/createinstallmedia --volume /Volumes/MyVolume Replace [VersionName] with the actual installer name (e.g., Sonoma, Ventura, Monterey) and MyVolume with the name you gave your drive.
Example for macOS Sonoma:
sudo /Applications/Install macOS Sonoma.app/Contents/Resources/createinstallmedia --volume /Volumes/MyVolume You'll be prompted for your administrator password. The process typically takes 10–20 minutes depending on your drive's write speed. Terminal will confirm completion with a message indicating the drive is now a bootable installer. 🖥️
Step 4: Boot Your Mac from the USB Drive
How you boot from USB depends on which type of Mac you have.
| Mac Type | How to Boot from USB |
|---|---|
| Intel Mac | Hold Option (⌥) immediately after pressing power; select the USB drive |
| Apple Silicon Mac (M1/M2/M3/M4) | Hold the power button until startup options appear; select the USB drive |
On Apple Silicon Macs, you'll also encounter Recovery Mode and security settings that may need to be adjusted before external boot is allowed. This is managed through Startup Security Utility, accessible from Recovery Mode.
Step 5: Complete the Installation
Once booted from the USB drive, you'll see the macOS Utilities screen. From here:
- Choose Install macOS to install over your existing system (preserving data)
- Open Disk Utility first if you want to erase your internal drive for a clean install
- Use Restore from Time Machine if you're recovering a backup
A clean install means selecting your internal drive in Disk Utility, erasing it, then returning to the main screen to install macOS fresh. This removes all existing data, so backup anything important beforehand.
Variables That Affect Your Experience
Not every installation plays out the same way. Several factors shape what you'll encounter:
macOS version compatibility — Older Macs can't run the latest macOS. Before downloading an installer, confirm your Mac's model year is supported. Apple publishes compatibility lists for every release.
Apple Silicon vs. Intel architecture — The boot process, security policies, and even some installer behaviors differ meaningfully between these two platforms. Macs with Apple Silicon chips have stricter default security settings around external boot media.
Drive speed — A USB 3.0 or USB-C drive dramatically reduces both the time to create the installer and the installation time itself. A USB 2.0 drive will work but will be noticeably slower at every stage.
Starting condition of the target Mac — A Mac that boots normally but needs a clean install is a different situation from one with firmware issues, a failing drive, or activation lock complications.
FileVault and existing encryption — If your current drive is encrypted with FileVault, you'll need credentials to erase it through Disk Utility during the process.
The right approach — whether clean install, upgrade, or recovery — depends entirely on why you're using a USB installer in the first place, and what state your Mac and its data are currently in. 🔍