Sweepfor Mac

Mac maintenance

How to Back Up Your Mac Without Time Machine

Time Machine isn't the only option. Build a Mac backup workflow with Carbon Copy Cloner, rsync, or cloud sync — including what each one misses.

9 min read

Time Machine works for most people, but it has real limits. It can’t make a bootable clone of your drive. It struggles with very large files. It needs its own dedicated destination. And if you’ve ever watched it fail three nights in a row, you know the rebuild process is a nightmare.

Plenty of Mac users back up without it. Here’s how, and what each approach actually covers.

The four real backup strategies

Before tools, decide what kind of backup you actually need:

  1. Bootable clone — an exact copy of your boot drive that you can boot from if the primary fails. Tools: Carbon Copy Cloner, SuperDuper.
  2. Versioned file backup — copies of your files with history, like Time Machine but to different storage. Tools: Arq, Backblaze, Restic.
  3. Cloud sync — files mirrored to a service that syncs across devices. Tools: iCloud Drive, Dropbox, Google Drive. Not really a backup, but useful as a layer.
  4. Manual archive — periodic copies of important folders to a different drive. Tools: rsync, Finder, Resilio Sync.

Most serious setups combine two of these. A bootable clone plus cloud versioning covers the bases — if your Mac dies, you boot from the clone and lose nothing. If you accidentally delete a file three weeks ago, the cloud archive has it.

Bootable clones with Carbon Copy Cloner

Carbon Copy Cloner (CCC) is the long-standing favorite for Mac cloning. It supports APFS, makes the destination bootable on Apple Silicon (with some caveats — Apple’s restricted what bootable clones can do), and runs scheduled tasks.

Setup:

  1. Download CCC from bombich.com.
  2. Connect a destination drive at least the size of your boot drive’s used space.
  3. Open CCC, choose Source (your boot disk) and Destination (the external).
  4. Click Start. The first clone takes hours; subsequent ones are incremental.

For Apple Silicon Macs, CCC creates a “Standard Backup” by default, which copies everything but isn’t bootable directly. To make it bootable, you also need to use Apple’s Asr tool through CCC, and even then, on M-series Macs you have to install macOS onto the external drive first.

CCC’s strength isn’t really being bootable anymore — Apple has made that hard. It’s the file-level versioning, the safety nets (it won’t delete files on the destination by default), and the scheduled task system. Set it to run nightly and you have a second copy of everything, separate from Time Machine.

Clean before you migrateDon’t carry junk to your new Mac. Sweep clears it first. Try Sweep free →

SuperDuper: the simpler clone tool

SuperDuper does one thing — clone your boot drive — and does it cleanly. It’s been around longer than CCC and has the same Apple Silicon caveats. The free version is enough for most people. The paid version adds scheduled tasks and “Smart Update” (incremental updates to an existing clone).

To use it:

  1. Download SuperDuper from shirt-pocket.com.
  2. Pick Copy source and destination.
  3. Choose Backup - all files and Erase, then copy files of.
  4. Click Copy Now.

The interface is dated, but the tool is solid. It’s the right pick if you want one button and don’t need versioning.

Arq for cloud-versioned backups

Arq backs up to your own cloud storage (Backblaze B2, Wasabi, S3, Google Cloud, OneDrive, etc.) with versioning, encryption, and deduplication. It’s the closest you’ll get to Time Machine in the cloud, with one big advantage: you control the storage.

A typical setup:

  1. Sign up for Backblaze B2 (cheap, simple) or Wasabi.
  2. Install Arq and point it at your B2 bucket.
  3. Configure the backup set: home folder, encryption passphrase, schedule.
  4. Let it run.

Cost example: 1 TB of backed-up data on B2 is around $5/month. The first backup takes days over typical home internet. Subsequent backups are incremental and finish in minutes.

What Arq doesn’t do: bootable clones. Use it alongside CCC or SuperDuper, not instead of them.

Backblaze (the consumer version)

Backblaze Personal Backup is set-and-forget. $9/month per Mac, unlimited storage, works in the background. You don’t manage buckets — the app handles everything.

Trade-offs:

  • Files older than 30 days are removed unless you pay for extended history (up to 1 year).
  • It doesn’t back up boot system files, so it’s not a clone.
  • Restoring is slow over the internet for large datasets. They mail USB drives for fast restores at extra cost.

For most people who want one cloud backup with no thinking, Backblaze is the obvious answer. Pair it with Time Machine or CCC for the bootable layer.

Tip: Cloud backups don't help if your only copy is in the cloud and you're trying to restore on a Mac with no internet. Always keep at least one local copy too.

rsync: the free, scriptable option

If you don’t want a tool, you can roll your own with rsync. macOS ships with an old version (2.6.9), which lacks features. Install a current version with Homebrew:

brew install rsync

Basic backup of your home folder to an external drive:

rsync -avh --delete --exclude='Library/Caches' --exclude='Library/Containers/com.docker.docker' ~/ /Volumes/Backup/home/

Flags:

  • -a archive mode (preserves permissions, timestamps, links)
  • -v verbose output
  • -h human-readable sizes
  • --delete removes files on the destination that don’t exist on the source
  • --exclude skips folders

Schedule it with launchd or a cron entry. The advantage is total control. The disadvantage is no UI, no versioning, and you have to think about what to exclude.

For versioning, look at restic (Homebrew installable) or borgbackup. Both do encrypted, deduplicated, versioned backups to local or cloud destinations. Restic in particular has solid Mac support and a clean CLI.

Cloud sync isn’t backup, but it helps

iCloud Drive, Dropbox, and Google Drive sync your files to the cloud, but they’re not backups. If you delete a file or it gets corrupted on your Mac, the cloud copy gets the same fate within seconds.

That said, they do help in two ways:

  1. Cross-device redundancy. If your Mac dies, your synced folders are still on your iPhone or another computer.
  2. Limited version history. iCloud, Dropbox, and Google Drive all keep some version history (30 days typically). It’s not as deep as Time Machine, but it’s a safety net.

Use them as a complement to a real backup, not a replacement.

What every alternative misses

The gap that Time Machine fills better than alternatives: the “I deleted something three months ago and just realized” recovery. Cloud sync versioning maxes out at 30 days. Cloud backup like Backblaze keeps deleted files for 30 days unless you pay extra. CCC clones overwrite the destination each time unless you specifically configure SafetyNet.

If you go without Time Machine, build the long-tail recovery in:

  • Configure CCC’s SafetyNet to keep deleted files for 60+ days
  • Use Arq with retention settings (keep daily for 30 days, weekly for 6 months, monthly forever)
  • Pay for Backblaze’s extended version history

Otherwise you’re trading Time Machine’s hassle for a different kind of regret six months from now.

Bootable clones on Apple Silicon: the truth

Apple has slowly made bootable clones less viable on M-series Macs. The boot system requires the OS be installed via the Recovery flow, signed and integrated with Secure Boot. A clone of the data partition is straightforward; making the clone actually boot requires extra steps and isn’t always reliable across macOS versions.

The practical answer: stop trying for a bootable clone as your primary backup. Instead:

  1. Have a current Time Machine or CCC file-level backup
  2. Have a recovery USB ready or use Internet Recovery
  3. Reinstall macOS on a replacement drive, then restore from your backup

That sequence takes 1-3 hours but works reliably. A bootable clone might shave 30 minutes off in the rare case it works, but the maintenance overhead isn’t worth it on modern Macs.

Skip the manual huntSweep clears the system caches, logs, and old installers a backup can’t reach. Download Sweep free →

What backup tools don’t do

Every backup tool faithfully archives whatever’s on your boot drive. None of them clean up the cruft that doesn’t belong there in the first place.

A 500 GB Mac that’s actually carrying 200 GB of useful files plus 300 GB of cache, leftover installers, and old simulator data will back up 500 GB. Every backup. Every time. Whether to Time Machine, Backblaze, CCC, or Arq.

Sweep handles the categories backup tools won’t touch:

  • System and user caches that regenerate constantly
  • Old .dmg and .pkg installers
  • App leftovers from uninstalled software
  • Localizations for languages you don’t read
  • Crash reports older than the OS can use
  • Old iOS backups in ~/Library/Application Support/MobileSync/Backup

It doesn’t replace your backup tool. It just stops your backup tool from copying 200 GB of nothing every night. The result: faster backups, smaller cloud storage bills, and a boot drive that doesn’t fill up unexpectedly.

A reasonable Mac backup setup

For most people who want a real backup without becoming a sysadmin:

  1. Time Machine to a 2× external SSD (kept attached or on a docking station)
  2. Backblaze Personal Backup for cloud redundancy
  3. iCloud Drive for cross-device sync of active documents
  4. A monthly clean of the boot drive so the backups stay lean

That’s three different backup strategies covering local, cloud, and sync — each with its own failure mode. If two of them fail at the same time, the third still has your data.

If you want to skip Time Machine entirely, replace step 1 with Carbon Copy Cloner running nightly to an external drive. The hardware investment is the same; the workflow is just slightly different.

The worst backup is the one you assume is working but isn’t. Test restores quarterly. Pull a random file from each backup and confirm you can actually get it back. The day you need it isn’t the day to find out something’s broken.

← Back to all guides