Web Server forum
Back To The Forum Home!Search!Private Messaging System

This is Interesting: Free IT Magazines Now Free shipping to   
Web Server Talk Web Server Talk > Unix and Linux reviews > Linux support forum > UK Linux Users > Good and easy Linux Backup/Recovery solutions




  Last Thread   Next Thread Next
  Show Printable Version Email this Page Subscribe to this Thread      Post New Thread    Post A Reply      

    Good and easy Linux Backup/Recovery solutions  
ddl


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
06-11-04 10:50 PM

Hi all,

I have been struggling for days with backup and recovery for Linux and still
yet to do a successful restore of a Linux system.

I am looking for free tools which are easy to use and does a bare-metal
recovery.

I am using Redhat linux 7.3 and 9.

Thanks for any advise.

ld








[ Post a follow-up to this message ]



    Re: Good and easy Linux Backup/Recovery solutions  
Robin T Cox


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
06-11-04 10:50 PM

"ddl" <ld@mmm12345.com> wrote in
news:cabq4n$k0f$1@reader01.singnet.com.sg:

> Hi all,
>
> I have been struggling for days with backup and recovery for Linux and
> still yet to do a successful restore of a Linux system.
>
> I am looking for free tools which are easy to use and does a
> bare-metal recovery.
>
> I am using Redhat linux 7.3 and 9.
>
> Thanks for any advise.
>
> ld
>
>
>
>

See:
http://www-106.ibm.com/developerwor...px.html?ca=dgr-
lnxw10Knoppix
(link may wrap)





[ Post a follow-up to this message ]



    Re: Good and easy Linux Backup/Recovery solutions  
Ian Northeast


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
06-11-04 10:50 PM

On Fri, 11 Jun 2004 16:54:01 +0800, ddl wrote:

> Hi all,
>
> I have been struggling for days with backup and recovery for Linux and
> still yet to do a successful restore of a Linux system.
>
> I am looking for free tools which are easy to use and does a bare-metal
> recovery.
>
> I am using Redhat linux 7.3 and 9.

http://mkcdrec.ota.be/
http://www.microwerks.net/~hugo/

Regards, Ian





[ Post a follow-up to this message ]



    Re: Good and easy Linux Backup/Recovery solutions  
ddl


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
06-11-04 10:50 PM

Thanks I will try that.

"Ian Northeast" <ian@house-from-hell.demon.co.uk> wrote in message
news:pan.2004.06.11.09.51.13.919515@house-from-hell.demon.co.uk...
> On Fri, 11 Jun 2004 16:54:01 +0800, ddl wrote:
> 
>
> http://mkcdrec.ota.be/
> http://www.microwerks.net/~hugo/
>
> Regards, Ian







[ Post a follow-up to this message ]



    Re: Good and easy Linux Backup/Recovery solutions  
Robert Billing


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
06-26-04 08:03 PM

On Fri, 11 Jun 2004 16:54:01 +0800, ddl wrote:

> I am looking for free tools which are easy to use and does a bare-metal
> recovery.

If you'll forgive some fairly blatant advertising you'll find what you
need in chapter 8 of my "Teach Yourself Linux." (Hodder, ISBN
0-340-81204-4). I describe how to restart a failed machine using only
tools found on the standard distros.

This chapter also has the bit about the lawnmower in it. :-)







[ Post a follow-up to this message ]



    Re: Good and easy Linux Backup/Recovery solutions  
Mike Brodbelt


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
06-26-04 08:03 PM

On Fri, 11 Jun 2004 16:54:01 +0800, ddl wrote:

> Hi all,
>
> I have been struggling for days with backup and recovery for Linux and
> still yet to do a successful restore of a Linux system.
>
> I am looking for free tools which are easy to use and does a bare-metal
> recovery.
>
> I am using Redhat linux 7.3 and 9.
>
> Thanks for any advise.

AMANDA is pretty much the best system I've used:-

http://www.backupcentral.com/amanda.html

HTH,

Mike.





[ Post a follow-up to this message ]



    Re: Good and easy Linux Backup/Recovery solutions  
John Hearns


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
06-26-04 08:03 PM

On Fri, 11 Jun 2004 16:54:01 +0800, ddl wrote:

> Hi all,
>
> I have been struggling for days with backup and recovery for Linux and sti
ll
> yet to do a successful restore of a Linux system.
>
> I am looking for free tools which are easy to use and does a bare-metal
> recovery.

Google for Mondo Rescue.
Another excellent Linux backup system is Arkeia.





[ Post a follow-up to this message ]



    Re: Good and easy Linux Backup/Recovery solutions  
Wayne Pascoe


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
06-26-04 08:03 PM

"ddl" <ld@mmm12345.com> wrote in message news:<cabq4n$k0f$1@reader01.singnet.com.sg>...[vbco
l=seagreen]
> Hi all,
>
> I have been struggling for days with backup and recovery for Linux and sti
ll
> yet to do a successful restore of a Linux system.
>
> I am looking for free tools which are easy to use and does a bare-metal
> recovery.[/vbcol]

You might want to look at Bacula. It's pretty easy to setup from the
sample configs and I believe it will do bare metal restores to most
systems.

Regards,

Wayne





[ Post a follow-up to this message ]



    Re: Good and easy Linux Backup/Recovery solutions  
Christopher Gavin


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
06-26-04 08:05 PM

I wrote a script to do this some time ago:

#! /bin/sh

# note for cretins: reiserfs (my fs) has no lost+found, consider adding
that to exclude if you use extfs! # also note, 2.4 kernel has no /sys.
# also, also note /home might contain gigs of crap ;() and be especially #
mindful of the fact that I use bz2 - you might just want to tar if you #
dont have a supercomputer - like mine. ;()

# exclude these dirs (please ffs customize this line to suit your system!)
# I personally put all my crap on /opt and exclude it. since backups arre
# intended only to backup my _system_ not all my gigs of pr0n.

exclude="proc opt sys mnt backup tmp"

LOGFILE="/var/log/backup"

# creates a file containing the above list

for directory in $exclude `rm -rf /tmp/excludelist.tmp`

do

echo $directory >> /tmp/excludelist.tmp

done

date=`date +%B-%d-%y`

# make a log

echo "($$) Backup Started at" $date "($$)" >> $LOGFILE

echo " " >> $LOGFILE

# back stuff up

tar -cvjpf /backup/$date.tar.bz2 --directory / --exclude-from
/tmp/excludelist.tmp .

# stop logging

echo "($$) Backup Ended at" $date  "($$)" >> $LOGFILE

echo " " >> $LOGFILE

# stoppit and tidy up!

rm -rf /tmp/excludelist.tmp








[ Post a follow-up to this message ]



    Sponsored Links  




 





   All times are GMT. The time now is 02:55 PM.      Post New Thread    Post A Reply      
  Last Thread   Next Thread Next


Most Popular forums 

Forum Jump:
Rate This Thread:

Forum Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is OFF
vB code is ON
Smilies are ON
[IMG] code is OFF
 

Back To The Top
Home | Usercp | Faq | Register