-
-
Save denji/8d3f609f6d0564de3922 to your computer and use it in GitHub Desktop.
OSX swap disable/enable launchd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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