18
3
I have bought some space from evbackup which provides me FTP, rsync and SSH. But I have also read that Amazon S3 can also be used to backups.
So I am really confused that do Amazon give FTP access to upload files to backup.
How can I download those files.
I read their site many time but could not understood how their system works. I just want to backup my users home directory
You can also try minio client [https://github.com/minio/mc ] aka mc. You can use [mc mirror] command to mirror your local folder with S3 bucket. – user52692 – 2015-11-26T07:19:35.417
thanks for that , also i could not understand their data model . i was checking their prices and they always state for bandwidth . like 0.18cents per GB data transfer. Suppose i upload 50GB data there for backup thats it and then do nothiing . Then how much they charge if i don't do nay tranfer. i could not find any where they staate how much space they give like 50$ for 50GB hard disk – Mirage – 2011-05-25T07:00:34.540
@Moorage: Amazon charges both for storage (from $0.14/GB per month), and transfer ($0.1/GB for transfer in). So for 50 GB you pay $7/month if you don't access this data. There are also RackSpace Cloud Files which is a similar service.
– sastanin – 2011-05-25T15:09:53.737duplicity looks very nice. I wish I would have seen that before writing my own rsync clone.
If duplicity is a little too elaborate for you, check out my simple "rsync-like" wrapper for boto: http://github.com/seedifferently/boto_rsync
1P.S. I've never used duplicity myself, but one of my friends reported broken backups. Use with care. – sastanin – 2012-07-27T16:44:33.443