LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   better sofeware to backup disk (https://www.linuxquestions.org/questions/linux-software-2/better-sofeware-to-backup-disk-809078/)

hywei 05-20-2010 08:45 AM

better sofeware to backup disk
 
Hello, my problem is that I have about 20 virtual disks, and I use rsync to backup them,
but if I only change a byte of one disk, rsync will transfer the whole disk.
Is there any software to just transfer what I changed instead of the whole file?

vigi 05-21-2010 04:29 AM

Yes rsync does this.
This is the command I use to backup my "home-source" data directory to "home-destination" directory on a second drive partition.

"home-source" backup to sdb6 "rsync -auvpH home-source/ /mnt/hd/home-destination/"
This does incremental backups, with the same permissions.
Do some reading on the web to find what the options are doing; and if it suits you.

choogendyk 05-22-2010 08:56 AM

hywei, did you get this worked out? Not clear from your original post whether it would be a problem with how you are specifying the details to rsync, or whether perhaps you are dealing with disk images for virtual systems. If the latter, and you are using rsync from outside those virtual systems, then rsync will see the disk image as a single file, and that could be a problem. If you run rsync from within the virtual system, then you can be more appropriate and conservative in what you copy. It is sort of like the idea of backing up your data rather than your whole system on the assumption that you will reinstall the OS and recover the data.

However, there may be some tricks you can apply to get virtual system disk images copied efficiently, if that's what you are doing and what you want to do. See, for example, http://www.finalcog.com/rsync-vm-spa...ace-kvm-vmware.

hywei 05-23-2010 01:32 AM

hi, choogendyk.

My problem is the latter case as you said, and I try to use rdiff-backup to solve it before, but currently I don't have enough time to complete it.

However, thanks very much for your suggestion, and I will post it if it works.


All times are GMT -5. The time now is 02:23 PM.