Backup utility for Linux?

Posted by: tahir

Backup utility for Linux? - 11/12/2007 16:02

I'm looking for something that I can use to backup data to a NAS, something like this would be typical:

Source: //mail/scalix/ all subdirectories excluding //mail/scalix/temp

Destination: //data1/Daily/scalix

I'm average to poor at batch files so wondered whether there's a non scripted solution (on Windows I use an application called PTReplicator from http://www.karenware.com) on Linux (RedHat).

If there's nothing like that around where can I find a good primer on scripting?
Posted by: tman

Re: Backup utility for Linux? - 11/12/2007 16:19

tar cvf /data1/Daily/scalix --exclude /mail/scalix/temp/* /mail/scalix/*
Posted by: tahir

Re: Backup utility for Linux? - 11/12/2007 16:41

That simple? Muchas gracias ;\)
Posted by: mlord

Re: Backup utility for Linux? - 11/12/2007 17:35

 Originally Posted By: tman
tar cvf /data1/Daily/scalix --exclude /mail/scalix/temp/* /mail/scalix/*


if /data1/Daily/scalix is the destination directory, then you really want this instead:

tar cvf /data1/Daily/scalix/bkp.tar --exclude /mail/scalix/temp/* /mail/scalix/*
Posted by: tahir

Re: Backup utility for Linux? - 16/12/2007 13:02

Thanks, been busy will try next time I'm in the office.