Operating System - Linux
1753730 Members
4705 Online
108799 Solutions
New Discussion юеВ

Re: how to do system backup for redhat linux 5

 
apple
Super Advisor

how to do system backup for redhat linux 5

dear Linux gurus,
we are running linux redhat enterprise 5 running on proliant server. how to do system backup? we have dvd ram. hope to hear from you.
10 REPLIES 10
Jeeshan
Honored Contributor

Re: how to do system backup for redhat linux 5

acronis true image used to take OS or file system backup.

another tools used like mondorescue and clonezilla.
a warrior never quits
apple
Super Advisor

Re: how to do system backup for redhat linux 5

we don't hv tape drive attached to our proliant server. can we use dvd or cd? thank you sir.
apple
Super Advisor

Re: how to do system backup for redhat linux 5

we hv data protector. hv u tried to use data protector bare metal recovery?
Gokul Chandola
Trusted Contributor

Re: how to do system backup for redhat linux 5

Hi,
Please read the following doc and link, will be helpfull to your query...

www.redhat.com/f/pdf/rhel/critical_data.pdf

http://www.redhat.com/docs/manuals/enterprise/RHEL-4-Manual/admin-guide/

Regards,
Gokul Chandola
There is always some scope for improvment.
smatador
Honored Contributor

Re: how to do system backup for redhat linux 5

Hi,
Two very good soft mondorescue & mkcdrec
http://www.mondorescue.org/
http://mkcdrec.ota.be/
You could use the bare metal image of mkcdrec with the DP product for example and afterthat use DP to restore all files.
Keith Matthews
New Member

Re: how to do system backup for redhat linux 5

One last point - TEST that backup before you rely on it.

This is especially true with CD/DVD media - they have a reputation in some quarters of not being too reliable.
Steven E. Protter
Exalted Contributor

Re: how to do system backup for redhat linux 5

Shalom,

I use acronis trueimage. It costs money, but is the best tool I ever used.

http://acronis.com

Also:
http://mondorescue.org

Open source.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Robert Walker_8
Valued Contributor

Re: how to do system backup for redhat linux 5

Gday,

A simple solution would be to compress dump using standard linux dump command.

touch /etc/dumpdates (if not already defined)
dump -0 -F 64 -z 9 f /backup/root.dmp.Z /

upon completion copy /backup/root.dmp.Z to DVD using dvdrecord or something.

You can then have incrementals of dump -1, -2, -3 etc etc all in a script.

The other of course is during a system outage ghost the system or as those said above.

I have used dump with compression option and using SSH to dd it to a remote server without drama and used it to restore to virtual machine (XEN HVM) without too much drama. So dump will do the job, you can use the RHEL recovery option plus a bit of work to get you back from bare metal - although GHOST and other such products are quicker to work with!

Robert.
Steven McCoy
Valued Contributor

Re: how to do system backup for redhat linux 5

I am just curious. I've typically setup nightly tarballing of /etc, /home, and role-secific filesystems (/var/spool/mail for mailservers, etc) then rsync those to a centralized server (typically connected to SAN). I then copy snapshots of those backups to an off-site solution (tape, DVD-R, external usb drive, etc).

Is there anything unrecommended about my current backup solution? Granted, this is not a 'bare metal' type of solution, but when I can roll out a server (on a per-role basis) in less than 25 minutes via kickstart, restoring config files and user data isn't much extra time/work.

I'm wondering if I should check out mondo rescue and start using that for clients. Other than 'bare metal' restore, what else might it have that my current solution does not satisfy?