Subscribe to:
Post Comments (Atom)
One thing is sure, a great change of our psychological attitude is imminent, that is certain… because we need more… we need more psychology, we need more understanding of human nature because the only real danger that exists is man himself, he is the great danger, and we are pitifully unaware of it. We know nothing of man, far too little. His psyche should be studied because we are the origin of all coming evil. — Carl Gustav Jung
Sometimes you want your Mac to be backed up more frequently than usual. If you want to instantly back up using Time Machine, you could click on the menu bar item and select "Back Up Now," but what if you want to change the backup interval indefinitely? With this Terminal Tip, you can do just that.
ReplyDeleteTime Machine is set to automatically back up every hour, but if you would like to change it to every half hour, you can use the following Terminal (/Applications/Utilities) command:
sudo defaults write /System/Library/LaunchDaemons/com.apple.backupd-auto StartInterval -int 1800
You will need to authenticate as an administrator, since this command is run under a "sudo." The time interval is measured in seconds, so you can enter any time you wish there; just make sure it is in seconds. By default, Time Machine backs up every 3600 seconds (every hour). If you wish to revert to the original, just replace "1800" with "3600."