Reputation: 5288
I have tryed many scripted ways to do this (embedded scripts in my IDE) but it is not a reliable way to do it.
Do you know mac OS applications permitting to backup (incrementaly ?) selected folders to a remote server using SSH, SCP, SFTP ?
Upvotes: 0
Views: 1238
Reputation: 1
Check this out http://www.immortalfiles.com. This is exact the type of application you need. Incremental backup to remote server. Even all file attributes are saved correctly. I quite surprised that this application is not widely known.
Upvotes: 0
Reputation: 63922
Check this link: http://blog.interlinked.org/tutorials/rsync_time_machine.html
How to make a TimeMachine with the above mentioned rsync command.
Add the -E paramater, and @Ned told. And be sure than you're not using an GNU version, for example from the macports. To ensure this, always use the full pathname to original Apple's rsync: /usr/bin/rsync.
Upvotes: 2
Reputation: 3539
Try rsync, it's built in and runs over the SSH network protocol. Only gotcha is that it has to be installed on the remote server as well, but most Unix machines have this out of the box too.
rsync -Avz local-dir me@remote-box:remote-dir
Upvotes: 0