What is a good free Linux FTP backup solution? [closed]
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:
- Determine the files that have changed since the last backup
- Zip then encrypt the target file
- Copy the encrypted files to the local backup folder
- Synchronize the backup files with the remote FTP folder
Any help is appreciated,
Mike
Solution 1:
duplicity can send backups to ftp. It can do incremental backups, can produce plain tarballs or gpg-encrypted backups as well.
Solution 2:
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.
Solution 3:
Try TimeDrive. Works great with this kind of setup.