I browse various solutions for backing up :
- tar (and his -N option, for incremental tar files)
- dump (and his level feature backing only new files, if wanted)
- fsarchiver
- CloneZilla ...
Starting from one point : I aim to copy my whole disk for 1.backing up 2. clone it to another same virgin machine. Or the same machine (full restore).
What s the best (quick sure) way ?
rsync
– Arkadiusz Drabczyk Jun 22 '15 at 13:10ssh
to connect to a source host. Additionally, it can be used for creating incremental backups if one decided it's necessary in the long run. – Arkadiusz Drabczyk Jun 22 '15 at 13:13rsync
copies requested files just likescp
orcp
. It doesn't care about partitions etc. I usedrsync
to make a backup of Linux system running directly on a hardware and restored it insideVirtualBox
. Just pick directories you will need to make a restore such as/usr
,/etc
,/home
,/var
,/root
,/opt
– Arkadiusz Drabczyk Jun 22 '15 at 14:56/boot
directory because it's not necessary to restore system. I have never useddump
though so I can't say nothing about it. I just know, IIUC, thatrsync
would be the right tool to do the job you want. However, as in everything, it's a matter of personal preference and knowledge of an particular tool. You need to make a decision yourself. – Arkadiusz Drabczyk Jun 22 '15 at 15:03