Tell me more ×
Server Fault is a question and answer site for professional system and network administrators. It's 100% free, no registration required.

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

share|improve this question

2 Answers

up vote 2 down vote accepted

Check out duplicity:

http://duplicity.nongnu.org/index.html

It supports all 4 of your criteria.

share|improve this answer
Yeah, I found this shortly after asking and have been working with configuring the various options. It works GREAT.. I couldn't have asked for a better solution. – Mike C Aug 15 '10 at 20:55

Here is a solution that replaces the FTP server with a friend (or paid server):

http://crashplan.com

http://support.crashplan.com/doku.php/how_to/configure_a_headless_client (For backing up VPS servers)

It is also much easier to use if you need a restore.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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