On Thu, 19 Jul 2001 Jenny_Hopkins@toby-churchill.com wrote:
if [ -f /home/jenny/cwp/ ]; then
that should be correct
Also, is there a standard place backups are filed? I've created a
No not really any standard place to put backups.
cp -r /home/jenny/cwp/* /home/jenny/cwpbackup/
but could I have something like
tar zcf /home/jenny/cwp > /backups/cwpbak.tar
Yes you could but with tar you put the name of the output file first so what you would want would actually be:
tar -czf /backups/cwpbak.tar.gz /home/jenny/cwp/
Generally the way I am used to doing backups was with NFS mounts over the network and tar on local machines and using split when the tar files got to big for the filesystem to handle! also used smbclient to back up NT machines and used the mt program to write things to/from tape, eventually we replaced most of this system with the Amanda package.
Anyway yes you are going in the correct direction Jen,