Link to home
Start Free TrialLog in
Avatar of ajo_fod
ajo_fod

asked on

hard disk to hard disk backup

hi,

i'm running linux server. i want to backup the server everyday to another hard drive on the same machine. so that it transfers only the changes to the back up hard disk. how can i achieve this to create a robust backup solution.

thanks.
ASKER CERTIFIED SOLUTION
Avatar of alextoft
alextoft
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Failure to RTFM. Only the CHANGES, so incremental backup.

Sounds like a job for rsync!
Avatar of ajo_fod
ajo_fod

ASKER

thanks. i think the solution with tar might work for me.

what is RTFM? how can i use rsync?


I think, this link might be very helpful for what you want to achieve:

http://www.mikerubel.org/computers/rsync_snapshots/

HTH,

-XoF-
Hi,

Why not setup software RAID?
hmm, software RAID isn't really a substitute for a backup solution. Or do you think of implementing RAID1, detaching the mirror and reattaching it once a day for syncing, then detaching it again?
FYI, RTFM is Read the f******** manual ;)

rsync is an excellent tool for incremental backups:

man rsync

for more info.

rsync -Cavz source destination

or even tunnelled via ssh (-e ssh) if the link is insecure, but as your drives are on the same system, the tunnelling is not necessary.

HTH:)   (Hope that helps)