|
I am new to Linux and I have read the post "which backup tool". After looking at some of the suggestions in existing post, I can not seem to find something that does what I want to do, at least not easily. Someone told me there was a command line DOS type utility I could use but I haven't seen anything like that. I have a Linux Server running: Linux version 2.6.9-89.0.23.ELsmp (mockbuild@builder10.centos.org) (gcc version 3.4.6 20060404 (Red Hat 3.4.6-11)) #1 SMP Wed Mar 17 06:55:21 EDT 2010 The Linux Box host vmware's Server which in turn host a virtual machine. I need to backup the entire Linux Box to my Windows 2003 Server with the goal of being able to do a cold metal restore should the linux box fail. I am looking for something that I can schedule to do a full backup and has a restore utility built into it. Thanks --JC |
|
My personal favorite tool for backing up is For imaging, it doesn't get much better than One last suggestion would be to look at Bacula is great! It might be a bit of an overkill to use it for this task, though.
(07 May '10, 21:43)
Jazz ♦
|
|
you can use amanda server and backup the linux box to the windows. or if you prefer it something loess or more painful [whatever] , set up a samba server in the linux machine and do a dump of the linux machine and then copy it to windows... |
|
If the server can be shutdown (because tghis program doesn't support live imaging - meaning imaging of the PC while it's running the OS), I suggest Clonezilla. That can be used stand-alone or over a network to push images out to a PC. You could also setup a cronjob and just use dd as an alternative method. |
|
It doesn't really matter what kind of storage device you backup to, as long as it is mounted as *rw (read/write). For example, you could mount the windows sharepoint with SAMBA or NFS, and then from there my fav methods would be tar (for particular parts of the filesystem), or a great fav of mine for doing very quick updates to your single backup, rsync. rsync is only going to take the delta of the stuff you backup (whether that be the entire "/" or just parts of your filesystem). for backing up the entire system, I would prolly use rsync, back up each individual filesystem separately (if you have mounted them on separate partitions, otherwise, do it all as one backup), and use NFS to mount the resource on the windows box. Here's a copy of the rsync that I use to keep a current image of the Slackware-current, which I run every Wednesday evening, and keep on one of my distribution machines that is NFS exported:
It is debatable in this case, whether the "z" parameter is useful, since the distro is already compressed for the most part. Check out the man page for rsync and you'll glean some good perspective on the arguments I've included in the command, and remember, once you complete the initial backup, the subsequent backups are only going to include the binary difference between the parts that have already been backed up and the current OS that you're backing up. Hope that helps! Kindest regards, Bradley . |
Please accept an answer, or provide more details on what you're looking for.