Skip to content

Instantly share code, notes, and snippets.

@cre-o
Forked from dan-palmer/swap-commands.txt
Last active August 29, 2015 14:24
Show Gist options
  • Save cre-o/81aa6395e6f440c0587a to your computer and use it in GitHub Desktop.
Save cre-o/81aa6395e6f440c0587a to your computer and use it in GitHub Desktop.
# check swap usage
sysctl vm.swapusage
# disable encrypted swap - SNOW LEOPARD
sudo defaults write /Library/Preferences/com.apple.virtualMemory UseEncryptedSwap -boolean no
# disable encrypted swap - LION
sudo defaults write /Library/Preferences/com.apple.virtualMemory DisableEncryptedSwap -boolean yes
# disable swap
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.dynamic_pager.plist
sudo rm /private/var/vm/swapfile*
# enable swap
sudo launchctl load -wF /System/Library/LaunchDaemons/com.apple.dynamic_pager.plist
# disable spotlight
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.metadata.mds.plist
# enable spotlight
sudo launchctl load -wF /System/Library/LaunchDaemons/com.apple.metadata.mds.plist
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment