Skip to content

Instantly share code, notes, and snippets.

@xenopus
Created January 12, 2017 08:35
Show Gist options
  • Save xenopus/9efbf97c74b333a42d259437804cad3c to your computer and use it in GitHub Desktop.
Save xenopus/9efbf97c74b333a42d259437804cad3c to your computer and use it in GitHub Desktop.
Speed up timemachine process.
echo "Removing Low Process Priority Throttling..."
sudo sysctl debug.lowpri_throttle_enabled=0
echo "Renice backupd process"
pid=$(ps alxww | grep -i "backupd$" | awk '{print $2}')
ps alxww | grep -i "backupd$"
sudo renice -10 ${pid}
ps alxww | grep -i "backupd$"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment