Rob F wrote:
> We have been using 4.1 since December and have found it to be
> great. However we have just replaced it with a Compaq
> NeoServer 150 because it was going to be easier for the non
> techs here to use now that I am no longer in the office. The
> biggest advantage that it has is the built in IDE 17gig drive
> in a caddy for backup. I know it is not as elegant as a tape
> system but for us it would be the perfered option. Is is
> possible to do this under E-Smith???
It may not be ideal for what you want, but I have my own backup solution for e-smith that covers just about everything...
Save the following contents to /etc/cron.daily/backup, and all shall be done...
------8><--------
cd /
nice -n 12 tar cX /etc/tar.exc / | compress >/
/e-smith.tar.z
------8><--------
Then save the following contents to /etc/tar.exc...
------8><--------
/proc/*
/boot/*
/dev/*
/var/spool/squid
/mnt/*
e-smith.tar.z
------8><--------
Add or remove any directories from the above list you feel necessary... (I exclude the squid cache, because it's rather large, and including it tends to run me out of HD space during the backup)
When/if you need to do a complete restore, it's as simple as...
cd /
cat //e-smith.tar.z | tar xv
The one disadvantage of this is that it does *not* integrate through the E-Smith administration console.