Reputation: 433
I'm considering switching from Windows 7 to Ubuntu 13.04. On Windows, I'm using Acronis True Image 2012 for Backup, which has these three key features for me:
AES 256 Encryption would be also fine, but this could be solved another way - to store an entire backup of the encrypted partition.
I have tried DejaDup which is preinstalled on Ubuntu, but I was not able to access backed up files another way than completely restore the backup, which is insufficient.
What do you recommend me?
Upvotes: 1
Views: 8773
Reputation: 731
For the /home folders (and any other user data folders), I suggest going with something simple like rsnapshot, rdiff-backup or rsync w/ hard-links. All of them store at least one (or all) backup revisions as regular files in the file system. All of them can work with remote targets over the network or local folders as the backup target. They're all command-line tools, which makes for easy scripting and execution via the cron command. Combine that with LVM snapshots and you can easily mount a read-only copy of the backup target file system, without worrying that you'll damage your backup directory.
Note: I strongly believe that all file systems should be inside of LVM logical volumes where possible. The only exceptions with GRUB 0.9x is /boot and / (root) because it doesn't know how to read those. But /home, /srv, /yourlocaldata, and other file systems can easily be placed into LVs.
For example, with rdiff-backup:
For bare-metal restore of system configuration -- I don't have a better recommendation then those linked. But as long as you make sure to put your own data on separate file systems, it gets a lot easier to tackle.
Upvotes: 1
Reputation: 3260
There is nice comparison of some commonly used backup utilities on community wiki. I'd recommend Bacula.
Upvotes: 1