I have the need for a backup solution that will let me run local incremental backups and then synchronize the backup with a remote folder over FTP. I have found several solutions that would allow me to do something like this but requires that my remote connection use SSH, rsync, or SFTP. Unfortunately, FTP is my ONLY option as the remote drive is a NAS drive with only FTP capabilities. Is there some sort of utility available, or a script I could write that would do the following:

  1. Determine the files that have changed since the last backup
  2. Zip then encrypt the target file
  3. Copy the encrypted files to the local backup folder
  4. Synchronize the backup files with the remote FTP folder

Any help is appreciated,

Mike

link|improve this question
Cross-posting is not a good idea anywhere on the web. – Kevin M Aug 15 '10 at 17:35
1  
@Kevin - actually, this is good for Super User, but can probably be answered as well on Server Fault. In such case, cross posting is ok. You will only get answers from a different point of view. User oriented here, and more professional solutions on Server Fault. Link to the Server Fault question. – Gnoupi Aug 15 '10 at 19:11
feedback

3 Answers

up vote 1 down vote accepted

duplicity can send backups to ftp. It can do incremental backups, can produce plain tarballs or gpg-encrypted backups as well.

link|improve this answer
feedback

Take a look at http://sourceforge.net/projects/ftpsync/ it doesn't do everything but takes care of the difficult ftp-syncing part. The other parts is not hard to script yourself.

link|improve this answer
feedback

Try TimeDrive. Works great with this kind of setup.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.