home *** CD-ROM | disk | FTP | other *** search
/ Phoenix CD 2.0 / Phoenix_CD.cdr / 11a / ddup105.zip / DISKDUP.DOC next >
Text File  |  1989-12-06  |  5KB  |  133 lines

  1.  
  2.  
  3.                               DISKDUP Users Guide
  4.  
  5.  
  6.  
  7.          Back in the old days when you wanted to make a copy of a
  8.          disk, all you had to do was put it in the drive and use
  9.          diskcopy.  There was no muss or fuss.  Even machines with
  10.          only 512k could make a copy of a 360k disk in a single pass.
  11.  
  12.          Today, it is a different story.  With the introduction of the
  13.          PC/AT we started using high capacity disks that would hold
  14.          1.2 megabytes of information.  With the PS/2 machines we use
  15.          720k and 1.44 megabyte 3.5 inch floppies.
  16.  
  17.          Alas, we are still using the same old diskcopy.  It now takes
  18.          SEVERAL passes to copy a single disk (unless you have two of
  19.          the high capacity drives).  The situation becomes even worse
  20.          if you want to make multiple copies of a single disk. I
  21.          quickly tired of this floppy shuffle, so I wrote DISKDUP
  22.          (pronounced disk dupe, as in duplicate).
  23.  
  24.          DISKDUP performs the same functions that diskcopy does, but
  25.          it eliminates all of the disk swapping.  How does it work you
  26.          ask?  Simple, almost everyone has a hard disk.  I just use
  27.          the hard disk for virtual memory.  Not only does this
  28.          eliminate the disk swapping, it also allows making multiple
  29.          copies of a disk with a single read pass.  Of course the hard
  30.          disk is left in the same condition in which it was found.
  31.          All of the temporary files are removed from the hard disk at
  32.          the end of the copy session.
  33.  
  34.          DISKDUP also adds a couple more extras:
  35.  
  36.          o An on screen display keeps you informed at all stages of
  37.            the copy.
  38.  
  39.          o Optional verification after each write operation with the
  40.            /v switch.
  41.  
  42.  
  43.          USAGE:    DISKDUP <floppy disk>  <hard disk>  [ /v ]
  44.  
  45.          EXAMPLE:  DISKDUP A: C:
  46.  
  47.  
  48.          DISKDUP requires the floppy drive letter to be either A or B.
  49.          Some systems with an add-on 3.5 inch drive access them
  50.          through a DRIVER.SYS entry in the CONFIG.SYS file.  In this
  51.          case you would normally use the drive letter D or perhaps E.
  52.          DISKDUP does not need the information provided by the driver
  53.          and will work properly as A or B.
  54.  
  55.          DISKDUP will format the target disk if it has not been
  56.          previously formatted.  In most cases it is not necessary to
  57.          use the verify option.  However, it only adds a few seconds
  58.          to the copy time and really does provide peace of mind.
  59.  
  60.  
  61.  
  62.  
  63.  
  64.                                      page 1
  65.  
  66.  
  67.  
  68.  
  69.                               DISKDUP Users Guide
  70.  
  71.  
  72.  
  73.          DISKDUP and this doc file are Copyrighted (c) 1989 by Roger
  74.          K.  Snyder. I am releasing DISKDUP as shareware.  This means
  75.          that you may freely use and copy the program.  In fact I
  76.          encourage you to give a copy of DISKDUP to everyone you know.
  77.          However, if you find DISKDUP to be useful, please send $10.00
  78.          to:
  79.  
  80.               Roger K. Snyder
  81.               7605 McKenzie Terrace #7
  82.               Vero Beach, FL  32968
  83.  
  84.  
  85.          For those who are curious, DISKDUP is written in 'Microsoft
  86.          C' except for the BIOS level floppy disk I/O routines, which
  87.          are written in assembler.
  88.  
  89.  
  90.          Revision history:
  91.  
  92.          1.0  Initial release. Required FORMAT.COM to be in the path.
  93.  
  94.          1.01 Added inline code to format target disks.
  95.  
  96.          1.02 Added /v option to verify disk after write operations.
  97.  
  98.          1.03 Improved error detection.  Added control-break handler.
  99.  
  100.          1.04 Streamlined code.  Added ability to copy ANOTHER disk
  101.               without reloading program.
  102.  
  103.          1.05 Improved user interface.  The keyboard buffer is
  104.               now flushed before accepting input.  No more "Oops, I
  105.               hit the enter key one time too many".
  106.  
  107.          And now for the legal mumbo jumbo which should not be needed
  108.          but the lawyers say that it is:
  109.  
  110.  
  111.                                    DISCLAIMER
  112.  
  113.          This program is provided "as is" with no warranties
  114.          whatsoever, either expressed or implied, including without
  115.          limitation, warranties of merchantability or fitness for a
  116.          particular purpose.  The entire risk as to the quality and
  117.          performance of the program is with you.  Should this program
  118.          be defective, you assume the entire cost of all necessary
  119.          servicing, repair or correction.
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.                                      page 2
  131.  
  132.  
  133.