home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 421.lha / EasyBackup / EasyBackup.doc.english.pp / EasyBackup.doc.english
Text File  |  1990-10-05  |  6KB  |  118 lines

  1. EasyBackup (c)1989 Oliver Enseling
  2. ----------------------------------
  3.  
  4. To prevent possible losses of data on a hard disk system it is indispensable
  5. to backup the hard disk on further data storage units. If one ownes a streamer
  6. or so this is no problem, but if you do not you are forced do use floppy disks
  7. to backup your hard disk. EasyBackup consists fo two CLI commands that do
  8. this job for you. There exists alredy a couple of similar programs, comercial
  9. ones and soem in the PD pool. I do not know how the comercila ones work, because
  10. I cannot afford to buy one, but the PD ones I know. Most of them use the
  11. standard AmigaDOS disk structure to store data. Furthermore they mostly
  12. optionally compress the data to save disk space but these two points make those
  13. programmes darned slow. The exception is found in the PD program KwikBackup
  14. that was contributed when the development of EasyBackup had already made
  15. great progress. Besides there are some important options missing in KwikBackup
  16. thus I want to contribute EasyBackup.
  17.  To Easybackup belong the two CLI commands BACKUP and RESTORE. BACKUP serves
  18. to back up the hard disk to floppy disks, that can be restored by the use of
  19. RESTORE.
  20.  
  21.  To invoke BACKUP type:
  22.  
  23. BACKUP [FROM] <dir> [TO] <drive> [SINCE <date|LAST>] [APPEND <diskno>]
  24.        [QUERY] [LIST <listfile>] [ARCHIVATE] [CHECKARCHIVE]
  25.  
  26. BACKUP stores the files foun in the AmigaDOS directory <dir> and its
  27. subdirectories to floppy disks, to be inserted in disk drive <drive>.
  28. <dir> can be any valid AmigaDOS path, while <drive> has to be one of
  29. DF0: to DF3:. If BAVCKUP is called with <dir> and <drive> as only
  30. arguments a complete hard disk backup is done starting with backup disk #1.
  31. There exist a few further options that shell be explained.
  32.  
  33. SINCE <date|LAST>
  34.  You can force BACKUP to store only those files, whose creation happened
  35. after a certain date. To do so type SINCE <date> in the command line. <date>
  36. has to be speciefied like dd.mm.yy. Note that the day comes first. (BACKUP
  37. was originally a german program.) Instead of giving a certain date you can type
  38. SINCE LAST what makes BACKUP use the date the last backup was done. This date
  39. is automatically stored in the file "S:easybackup.config". This option is
  40. extremely useful for craeting incremental backups.
  41.  
  42. APPEND <diskno>
  43.  When doing an incremental backup it would be unsatisfactory to waste a lot
  44. of disk space by beginning every incremental backup with a new set of
  45. disks. Thus you can type APPEND <diskno> which will append the newly stored data
  46. to the existing backup beginning at disk number <diskno>. It is recommended
  47. that you specify the number of the last backup disk by <diskno>. If you specify
  48. a number lower than the number of the last backup disk, disks are searched
  49. through until the edn of the backup is found.
  50.  
  51. QUERY
  52.  If you do not want to have all the files in a certain directory backed up
  53. you can force BACKUP to ask for every file or subdirectory wether it should
  54. be backed up or not. You have to type QUERY in the command line then.
  55.  
  56. LIST <listfile>
  57.  To be able to know where which file can be found in the backup copy you
  58. can have BACKUP to list the files, the disks they are on and their positions
  59. on disk to a <listfile> by typing LIST <listfile>. If you specify PRT:
  60. for <listfile> then the list goes to your printer. If BACKUP is unable
  61. to open <listfile> the backup is done without listing.
  62.  
  63. ARCHIVATE
  64.  The option ARCHIVATE causes BACKUP to set the Archive-Flags for every file
  65. being backud up to mark them as being backed up. This may be useful to
  66. cooperate with other backup programs.
  67.  
  68. CHECKARCHIVE
  69.  If you type ARCHIVSTATUS only those files, that do not hav the Archive-Flag set
  70. will be stored.
  71.  
  72. You can leave out the keywords FROM and TO if you want to. After BACKUP is started
  73. the whole work will be done mostly automatically. You only have to change disks
  74. when BACKUP tells you to. When a new disk has to be inserted BACKUP anounces
  75. this with a beep, thus you do not have to stare at the screen all the time.
  76. A disk change is being noticed automatically, thus you do not hav to press a
  77. key or so. To backup one entire disk BACKUP usually takes 2 to 3 minutes,
  78. depending on the speed of yourd hard disk. If and error occurs EasyBackup
  79. informs you about and you are asked to continue or not. In any case data loss
  80. is minimized. BACKUP does not compress any data, because this would
  81. take a lot more of time although the disk space needed increases.
  82.  
  83. To start RESTORE type:
  84.  
  85. RESTORE [FROM] <drive> [TO] <dir> [PATTERN <pattern>] [START <startno>]
  86.         [END <endno>] [QUERY] [ARCHIVATE]
  87.  
  88. RESTORE restores data from floppy disks to be inserted in disk drive <drive>
  89. to the directory <dir> on your hard disk. If <dir> does not exists it is
  90. being created. If only <dir> and <drive> are specified the entire backup
  91. is restored. Besides the following options can be applied:
  92.  
  93. PATTERN <pattern>
  94.  If you only want to restore certain files you can specify an AmigaDOS like
  95. pattern containing wildcards. Only files that match this pattern are being
  96. restored.
  97.  
  98. START <startno>
  99. END <endno>
  100.  If you merely want to restore e certain area of your backup you can specify
  101. the number of the backup disk to start with (START <startno>) and the number
  102. to end with (END <endno>).
  103.  
  104. QUERY
  105.  By typing QUERY you force RESTORE to ask for each file or subdirectory on
  106. the backup whether it should be restored or not.
  107.  
  108. ARCHIVATE
  109.  If the Archive-Flag of the files that are restored should be set you have
  110. to specify ARCHIVATE on the command line.
  111.  
  112. I hope that the application of RESTORE will not be necessary, but advice
  113. everybody to back up the entire hard disk at least once a month with
  114. incremental backups after every productive session.
  115.  
  116. OE
  117.  
  118.