home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume19 / backup / README < prev   
Text File  |  1989-06-29  |  1KB  |  32 lines

  1. The backup program is an online disk-to-disk incremental backup utility
  2. that maintains a file queue in a seperate partition, copying files that
  3. have been modified since its last run to the special backup filesystem.
  4. As space is needed on the backup partition, just enough of the oldest files
  5. are removed to make space for new file copies.  In other words, a fixed
  6. size (in disk blocks) queue of recently modified files.
  7.  
  8.  
  9. Defaults, overridden by command line arguments:
  10.  
  11.     BACKUP        /backup
  12.     CONFIG        /etc/backup.conf
  13.     MAXSIZE        100k
  14.     DELTA        24hr
  15.  
  16. Assumes SunOS filesystem interface (vnodes, etc.), would not
  17. be hard to port to straight BSD filesystem.
  18.  
  19. Installation:
  20.  
  21. - Edit Makefile.
  22. - Tweak default parameters in backup.c if you don't like the above values.
  23. - Create and install a configuration file, see the example in ./backup.conf.
  24. - make; make install
  25. - Allocate a /backup partition, create and mount an empty filesystem on it.
  26. - Add a crontab entry, e.g.:
  27.     37 4,12,20 * * * /local/etc/backup
  28.  
  29. Thanks to Ken Lalonde for code tweaks, getback.sh, and most of this README file
  30.  
  31. rayan
  32.