Answer the question
In order to leave comments, you need to log in
On-the-fly Linux backup system analog of Acronis?
Good day!
Tell me if there is a backup system for the entire disk for linux without shutting down the server. An analogue of Acronis true image and others like it. So that after the failure of the system disk, you can insert a new disk into the server and deploy from the backup. so to speak, to make casts of the hard disk.
Now I'm using rsync via cron.
#!/bin/sh
date=`date "+%Y-%m-%d-%H%M%S"`
SRC=/
DST=/mnt/backup-server-hdd/Backups.backupdb/atv
rsync -axz \
--delete \
--link-dest=../Latest \
$SRC [email protected]:$DST/Processing-$date \
&& ssh [email protected] \
«cd $DST \
&& mv Processing-$date $date \
&& rm -f Latest»
&& ln -s $date Latest"
Answer the question
In order to leave comments, you need to log in
RAID{1,5,6}
LVM snapshot
dd-like unix.stackexchange.com/a/138081
https://github.com/libguestfs/nbdkit/blob/master/d...
dd if=/dev/hdaX | gzip -c -9 | ssh [email protected]_server dd of=/dest/path/hdaX.img.gz
BTRFS file system and file system snapshots. It works much faster than rsync, incremental backups can be done, the file system is backed up, and not files with all the ensuing advantages.
If you backup using DD without installation, you will get anything, but not a normal backup.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question