home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / fss100.zip / FSS.DOC next >
Text File  |  1994-11-08  |  3KB  |  101 lines

  1. FSS.EXE
  2. ============================================================================
  3.  
  4. VERSION COVERED BY THESE DOC's:  FSS 1.0a 11/8/94
  5.  
  6. Purpose:
  7.  
  8.     To create BackMaster SaveSet files (*.FSS) automatically
  9.     in saveset sizes to accomodate NOT having to switch tapes
  10.     during an unattended backup!
  11.  
  12. Usage:  Runs in an OS/2 DOS session (or in DOS, I guess...)
  13.  
  14. FSS <drive> </Snnn>
  15.  
  16.     <drive> is MANDATORY, and is the target backup drive.
  17.  
  18.     /Snnn   is optional.  nnn = Bytes/1,000,000 to be included in
  19.                           the saveset file.  Default = 180
  20.                           Do not include a decimal place in the number.
  21.                           The "s" in "/s" can be either upper or lowercase.
  22.  
  23. EXAMPLES:
  24.  
  25. FSS C:
  26.  
  27.   Creates saveset files named:
  28.  
  29.         BS_C_A.FSS
  30.         BS_C_B.FSS  (etc...)
  31.  
  32.   each containing up to 180,000,000 bytes.
  33.  
  34. FSS D: /s45
  35.  
  36.   Creates saveset files named:
  37.  
  38.         BS_D_A.FSS
  39.         BS_D_B.FSS  (etc...)
  40.  
  41.   each containing up to 45,000,000 bytes.
  42.  
  43. Note that the size contained in the saveset is computed as the file is
  44. being created, and will always be LARGER than the specified number, until
  45. the last saveset file.  This is because the bytes are summed up on the
  46. fly until the byte count is GREATER than the target set size. If you
  47. have directories which are BIG, then your byte count may be exceeded by
  48. a lot.  Always use BackMaster to manually check the saveset sizes if it
  49. is omportant that the tape not require changing during the backup.
  50.  
  51. Assuming that you use compression, the 180 Mb default size should usually
  52. fit on a single 120 MB (uncompressed) tape if it is empty at the start.
  53.  
  54. Caveats:
  55. (Or, "BUGS" to you people in Rio Linda....)
  56.  
  57.     This program create saveset files with a comment at the end of each
  58.     saveset file AFTER the END statement.  This is not in accordance with
  59.     BackMaster specs for their FSS file format.  You may need to manually
  60.     remove the comment line after the END statement.
  61.  
  62.     ALWAYS carefully inspect the FSS files before use!
  63.  
  64. Warranty:
  65.  
  66.     None.
  67.  
  68. Support:
  69.  
  70.     None.  (TurboPASCAL Source code is available for the brave...)
  71.  
  72. Copyright:
  73.  
  74.     This program is a modification of a PUBLIC DOMAIN program called
  75.     VTREE.  This program is also placed in the public domain.  Source
  76.     code is available for FidoNet File Request at 1:106/100 by the
  77.     name:  FSS100.ZIP.
  78.  
  79. Modifier of the Source Code for this program:
  80.  
  81.         Justin Marquez
  82.         FidoNet Address 1:106/100 (Houston, TX)
  83.         BBS#  713-978-3573
  84.         Compuserve ID# 74632,3364
  85.  
  86. Original Author:   Unknown to me.  Bless him, whoever he is!
  87.  
  88. HISTORY:
  89.  
  90.   1.0a - Discovered that original release was limited to 9 FSS files.
  91.          Changed naming convention to allow letters instead of numbers
  92.          for each successive fss file.
  93.  
  94.          Also discovered that the original release did not get the files
  95.          in the root directory.  Fixed so that the first fss file would
  96.          get those.
  97.  
  98.          (Humbled by the stoopid errors..... [blush] )
  99.  
  100.   JJM 11/8/94
  101.