Created
January 7, 2014 11:50
-
-
Save jnschulze/8298231 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/bin/bash | |
# Disable Sudden Motion Sensor (SMS) | |
sudo pmset -a sms 0 | |
# Diable Hibernation | |
sudo pmset -a hibernatemode 0 | |
# Disable local TimeMachine Snapshots | |
sudo tmutil disablelocal | |
# Disable Spotlight Indexing | |
sudo mdutil -a -i off | |
# Remount / using 'noatime' flag | |
sudo mount -vuwo noatime / |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment