Operating System - Linux
1753253 Members
4338 Online
108792 Solutions
New Discussion юеВ

Re: Backup and restore on Linux

 
SOLVED
Go to solution
Pieter_5
Advisor

Backup and restore on Linux

I would like to know what the standard backup- and restore tools are for Red Hat AS 2.1. For our HP-UX servers we use ignite for OS-backup and fbackup for the daily backup. What are the comparable tools for Red Hat?
8 REPLIES 8
Jerome Henry
Honored Contributor

Re: Backup and restore on Linux

Hi,

Have a look here, you'll find several commands that will suit your needs, even if they are not exactly as easy and elegant as the *backup from HP UX :

http://www.europe.redhat.com/documentation/rhl9/rhl-sap-en-9/s1-disaster-rhlspec.php3

hth

J
You can lean only on what resists you...
Krishna Prasad
Trusted Contributor

Re: Backup and restore on Linux

We use Mondo it is free. It will give you ignite like functionality.

You can boot off of a floppy and backup/restore to tape.

You can restore one file or boot off the floppy and restore the entire OS. If you have dual boot it will even restore the ntfs partion.

You have to be running Linux to restore the ntfs partion then boot into MS.
Positive Results requires Positive Thinking
Steven E. Protter
Exalted Contributor
Solution

Re: Backup and restore on Linux

amanda is on the distrubution cd's and can be installed.

mondo is the equivalent of HP-UX Ignite.

I hope on your HP-UX boxes you make_tape_recovery once in a while, because fbackup is not enough to recover a system with a boot or lif problem.

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
twang
Honored Contributor

Re: Backup and restore on Linux

Linux Backup and Restore
------------------------
Using tar
- used for creating archive files
- option:
c create archive
x extract file from archive
t view content of archive
j compress archive with bzip2
z compress archive with gzip
- example
make archive + gzip compression:
# tar cvzf /var/tmp/boot.tgz /boot
uncompress archive
# tar tf /var/tmp/boot.tar
extract files into a temp location:
# mkdir /tmp/untarred; cd /tmp/untarred
# tar xvf /var/tmp/boot.tar
# ls /tmp/untarred/boot

Using dump/restore
- backup/restore ext2/3 filesystem
- support full and incremental backups
eg.
# dump -u -f
# restore -rf
Huc_1
Honored Contributor

Re: Backup and restore on Linux

I use Dump and Restore I have developped a tailord solution that meet my needs and does it all from crontab (full,weekly,dayly) it does it all at night in single user mode to tape.

I do also use mondo/mindi to CD-RW once in a while for archive.

Also use interactively gnutar very often... I find this more general purpose

But realy it all depend on the ganularity you need for your enviroment.

Jean-Pierre

Smile I will feel the difference
Jean-Pierre Denis
Valued Contributor

Re: Backup and restore on Linux

Hi,

we use arkeia and i'm very satisfied. It can run on almost any platform and the interface is very good and stable.

Take a look http://www.arkeia.com/

Thanks,
JP
Open your Mind and use Open Source software...
Alexander M. Ermes
Honored Contributor

Re: Backup and restore on Linux

Hi there.
What about the good old cpio ?

find / -depth -print | cpio -ocvB > /dev/rmt/0m 2>> logfile &

Rgds
Alexander M. Ermes
.. and all these memories are going to vanish like tears in the rain! final words from Rutger Hauer in "Blade Runner"
dirk dierickx
Honored Contributor

Re: Backup and restore on Linux

HP's own data protector/omniback also works on linux. the standard commands for backup on linux are tar and dump.
for disaster recovery, i can only recommend mondo.