I need to drop another hard drive into my company's SME Server-powered fileserver and figure out a way to do a nightly clone backup of the entire filesystem so that, if the hard drive fails, I can just drop in the clone and be on my way. I'm basically looking for something that can perform a dd
, but with the filesystem being live.
Any suggestions?
RAID seems like the solution here, can't imagine calling something a "server" without a redundant disk system.
tar
,cpio
,dump
,rsync
there are lots of ways to backup a server. There's a ton of other more sophisticated tools as well,bacula
,amanda
, proprietary solutions...rsync
may be your friend. It will sync differences in the file systems. Use the one file system option to limit the copy to the partition being copied.Piping
dump
torestore
should also work, but rsync will do the least I/O.For Ghost-like backups I like Mondo which creates bootable recovery disk.
Windows: http://www.drive-backup.com/
Linux: http://sourceforge.net/projects/g4l/