Rework Backup category

This commit is contained in:
Marcel Bischoff 2015-12-04 01:02:33 +01:00
parent 9536551b7f
commit b03f0ea0f5

View File

@ -224,16 +224,20 @@ This changes the interval to 30 minutes. The integer value is the time in second
sudo defaults write /System/Library/Launch Daemons/com.apple.backupd-auto StartInterval -int 1800 sudo defaults write /System/Library/Launch Daemons/com.apple.backupd-auto StartInterval -int 1800
``` ```
#### Disable Local Time Machine Backups
```bash
hash tmutil &> /dev/null && sudo tmutil disablelocal
```
#### Prevent Time Machine from Prompting to Use New Hard Drives as Backup Volume #### Prevent Time Machine from Prompting to Use New Hard Drives as Backup Volume
```bash ```bash
defaults write com.apple.TimeMachine DoNotOfferNewDisksForBackup -bool true defaults write com.apple.TimeMachine DoNotOfferNewDisksForBackup -bool true
``` ```
#### Set Status
```bash
# Disable Local Time Machine Backups
hash tmutil &> /dev/null && sudo tmutil disablelocal
# Enable Local Time Machine Backups (Default)
hash tmutil &> /dev/null && sudo tmutil enablelocal
```
## Developer ## Developer