Re: [SLUG] Looking for a way (that works) to back up entire system

From: Matthew Rogers (matt@runithard.com)
Date: Mon Mar 03 2008 - 12:09:11 EST


Hello Donald,

I use tar and backup all my critical stuff in daily generations and
purge the generations using a find command like so.

find /mnt/backup -mtime +365 -exec rm {} \;

It's CRON and it works..... Here is my backup command...

tar cvfj /mnt/backup/backup.`date +%Y%m%d`.tar.bz2 /etc /home /var

If you want a MIRROR image just setup a raid. I'm a big fan of raiding
and backing up critical files(WITH GENERATIONS SINCE USERS DON'T NOTICE
ITS GONE FOR A FEW DAYS) -- the raid keeps the system safe and the
backup keeps the users data safe.

It's personal preference I'm sure, but you can do tapes and tar it off
it CPIO off the system to those. I'm lazy, I don't like to swap tapes.

Oh recovery is a snap..... "So you deleted you home folder or your
email...... not a problem", you can use ARK to open the tar file and
pull their mail folder for VAR or do a command line command. Raid is a
snap... "Yeah my lights blinking... I'll need to buy a new drive in the
next couple of days".

GHOST is out there too...... along with lots of other GUI based free
linux tools. That stuff gets complicated(or robust if you like it) and
time consuming, my backup takes like an hour and I run it at 2AM
everynight in CRONTAB.

Good luck!

--Matthew Rogers

Donald E Haselwood wrote:
> What is a good way to backup the entire linux system?
>
> I've googled backing up and tried various variations of the following, all
> with no success:
> Suse 10.3's Yast backup
> cp -a
> rsync -a
> tar -cfz
>
> I got an external 500GB drive, and set up three partitions: one for mac, fat
> for win, ext3 for linux.
>
> I've tried so many things that I can't present a concise problem, though the
> most common one seems to be running out of disk space. ('umount'ing all
> partitions except the source & destination solved one problem.)
>
> Very time consuming "experiments", i.e. hours per trial.
>
> I was wondering how Slug'ers are doing system backups (and of course the next
> step is recovery, but that comes later).
>
> Don
> -----------------------------------------------------------------------
> This list is provided as an unmoderated internet service by Networked
> Knowledge Systems (NKS). Views and opinions expressed in messages
> posted are those of the author and do not necessarily reflect the
> official policy or position of NKS or any of its employees.
>
-----------------------------------------------------------------------
This list is provided as an unmoderated internet service by Networked
Knowledge Systems (NKS). Views and opinions expressed in messages
posted are those of the author and do not necessarily reflect the
official policy or position of NKS or any of its employees.



This archive was generated by hypermail 2.1.3 : Fri Aug 01 2014 - 15:16:10 EDT