Skip to content

Redirect macOS software update download to external volume #76

Description

@iheitlager

Problem

Internal disk (228GB) critically low on space. macOS software update downloads consume GBs and cannot complete due to insufficient space — catch-22.

Solution

Redirect software update download cache to /Volumes/Data (1TB external, 899GB free).

Steps

  1. Clear stalled download:
sudo softwareupdate --clear-catalog
  1. Redirect downloads to external volume:
sudo defaults write /Library/Preferences/com.apple.SoftwareUpdate SoftwareUpdateDownloadDir /Volumes/Data/_swupdate
mkdir -p /Volumes/Data/_swupdate
  1. Run the update from System Settings

  2. Revert after update completes:

sudo defaults delete /Library/Preferences/com.apple.SoftwareUpdate SoftwareUpdateDownloadDir
rm -rf /Volumes/Data/_swupdate

Also consider

  • Delete APFS OS update snapshots to reclaim ~10-15GB
  • Restore offloaded apps from /Volumes/Data/_temp_offload via restore-apps.sh

🤖 Analysis by Claude

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions