加密 FTP 存储
我想这是一个编程问题,因为如果不存在我就会编写一个程序。
所以我找到了一个非常便宜的网络托管(我并不真正关心实际的网络托管)。他们会给我一个域名和具有大量存储空间的 ftp 服务器。无论如何,我想备份几百GB的数据(主要是家庭照片和重要文档的扫描件)。我还想备份未来的家庭照片/文档。我不在乎本地 NAS 上的所有内容是否会在火灾中烧毁,我只想将照片和重要文档进行异地备份。
所以我想要一些程序,让我在本地选择文件夹并安排它们备份到 ftp 服务器。我有点安全狂热,所以我希望文件在传输到服务器之前先在本地加密。
我知道我可以使用 truecrypt 卷来做到这一点,但我不想每次更改其中的文件时都将整个加密卷 blob 传输到服务器。所以我可以做多个真正的加密卷,但这将是一个管理上的痛苦
,而且这必须与 mac/linux 兼容,尽管我主要在 Linux 上。
我基本上需要将 rsync + truecrypt + cron + sftp 全部整合到一个加密安全程序中。
我已经找了好几天了,没有运气。有什么想法吗?
I guess this is kind of a programming question, because I'm going to write a program if this doesn't exist.
So I found a very cheap web-host (I don't really care about the actual web hosting). They will give me a domain name and ftp server with a ton of storage space. Anyway, I want to backup a few hundred gigs of data (mostly family photos and scans of important documents). I also want to backup any future family photos / documents. I don't care if everything on my local NAS dies in a fire, I just want to have the photos and important documents backed up off-site.
So I want some program that lets me select folders locally and schedules them to be backed up to the ftp server. I'm a bit of a security nut, so i'd like the files to be encrypted locally before being transferred up onto the server.
I know I can do this with truecrypt volumes, but I don't want to transfer an entire encrypted volume blob up to the server ever time I change a file in it. So I could do multiple true crypt volumes but that will be a pain to manage
Also this must be mac/linux compatible although I'll primarily be on linux.
I basically need rsync + truecrypt + cron + sftp all rolled into a cryptographically secure program.
I've been searching for days with no luck. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
mozyBackup 就是这样做的 - 它不使用 FTP,它有一个自定义上传器。
附注请记住,典型的家庭 ADSL 连接仅提供大约 1Gb/天的上游
Linux 选项。
开箱即用的选项可能口是心非(例如参见http://www.howtoforge.com/creating-encrypted-ftp -backups-with-duplicity-and-ftplicity-on-debian-lenny )
否则,如果这些基本上很少更改的文件存档副本 - 我会推出自己的 gnupg(或 dpad)单个文件加密、文件更改脚本以及 ftp 或 rsync。
mozyBackup does this - it doesn't use FTP, it has a custom uploader.
ps. Remember a typical home ADSL connection only does about 1Gb/day upstream
Linux option.
Out of the box option probably duplicity ( for example see http://www.howtoforge.com/creating-encrypted-ftp-backups-with-duplicity-and-ftplicity-on-debian-lenny )
Otherwise if these are basically rarely changed archive copies of files - I would roll my own gnupg (or dpad) individual file encryption, a file changed script, and ftp or rsync.