home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / FLOPPIES / QDC10.ZIP / QDC.DOC < prev    next >
Encoding:
Text File  |  1990-05-19  |  6.1 KB  |  138 lines

  1. Welcome to QDC 1.0!
  2. -------------------
  3.  
  4.       QDC stands for Quick Disk Copy - it is intended to save users who  
  5. frequently copy disks a lot of time.  
  6.  
  7.       When DOS supported only 360K and smaller floppies and there were no
  8. such things as network driver software and TSRs, copying a disk with one
  9. drive was as simple as DISKCOPY A: A: with one swap involved.   Even better,
  10. if you had two floppies, you were set!  These days, however, machines with
  11. either one 1.44 MB floppy, or one of each of the HD floppies and tons of
  12. network software and TSRs are more the rule.  On this type of machine, a
  13. DOS DISKCOPY of a 1.44 MB floppy can take forever!  What is especially
  14. annoying is the continual swapping of source and destination disks involved
  15. - on a machine with, say, 450K of conventional memory (the kind CHKDSK
  16. reports) free, a DISKCOPY of a 1.44 MB floppy can take four to five swaps!
  17. DISKCOPYing the same disk shelled out from Lotus may take 8 to 10 swaps!
  18.  
  19.       QDC will alleviate these annoyances - as long as QDC has enough
  20. memory to run (approximately 45K) and sufficient space on the drive it is
  21. started from (as many bytes free as the disk to be copied is large), it will
  22. perform the copy operation in only one swap!  You may be thinking this is
  23. just some sort of XCOPY scheme - no!  QDC creates an IMAGE FILE of the
  24. source and writes that out to the destination - the source and destination
  25. will DISKCOMPare exactly.  
  26.  
  27.  
  28. Using QDC
  29. ---------
  30.  
  31.       Say you want to copy a 1.44 MB floppy and you have one 3.5" drive you
  32. call A: - then you would insert the source floppy into the drive, type  
  33.  
  34.             QDC A:
  35.  
  36. and follow the directions.  Explanation:  QDC will take a look at floppy in
  37. drive A: and determine how much space it needs to store the image file.  It
  38. then checks this amount against how much it has available in the startup
  39. drive - if the latter amount is larger, QDC begins to read the source floppy
  40. and write an IMAGE FILE of it to the default drive (the one QDC was started
  41. from.)  When completed, QDC will prompt you to insert the destination disk
  42. and will write the IMAGE FILE to it.  Some caveats:
  43.  
  44.       1)   QDC is known to work on 320K, 360K, 720K, 1.2 MB, and 1.44 MB    
  45.            floppies - it should be able to handle other sizes without a
  46.            problem, but this has not been tested.  QDC does not trust media
  47.            descriptor bytes and determines disk parameters by reading the
  48.            first sector's track, sector, etc., information directly. 
  49.  
  50.       2)   QDC *DOES NOT* format the destination disk like DISKCOPY does.
  51.            It is my opinion that there are far better format program  
  52.            options than DOS FORMAT.  My commercial recommendation would
  53.            be the Norton Utilities SF program.  Sharewarewise, I like
  54.            FORDSK.  Implementing a fast format in QDC would make the
  55.            program twice as large, and implementing a DOS format would not
  56.            give one the option of speeding up large copy operations by
  57.            using a decent format program - therefore I left formatting
  58.            out.
  59.  
  60.  
  61. Speeding Up QDC
  62. ---------------
  63.  
  64.       As it is, QDC is a fairly fast program, but a few things can be done to
  65. make it even faster:
  66.  
  67.       QDCM.BAT:  This batch file is useful for making multiple copies
  68.                  without having to run QDC repeatedly - this basically
  69.                  works like DISKCOPY's asking you "Copy another disk (y/n)"
  70.                  The command syntax for QDCM is the same as that for QDC.
  71.  
  72.       CACHE:     Having a hard disk cache will make QDC substantially
  73.                  faster when it comes to writing the IMAGE FILE back to the
  74.                  destination disk.  There are many good shareware disk
  75.                  cache programs, I am sure, but I have had the chance only
  76.                  to look at the commercial ones.  PC-KWIK Cache is my
  77.                  favorite and works well with QDC.
  78.  
  79.       RAM DISK:  If you have, say four megabytes of memory, you can set up
  80.                  a RAM disk and use that as QDC's default drive.  The file
  81.                  CONFIG.RAM is included as an example of how to implement a
  82.                  RAM DISK using the MS/PC DOS VDISK.SYS driver.  Using a
  83.                  large RAM disk is currently the fastest way to copy disks
  84.                  using QDC.  A later version will include the option of
  85.                  writing the image file directly to Expanded Memory and
  86.                  thus eliminate the hassle of the RAM DISK.
  87.  
  88.  
  89. QDC 1.0 is NOT Public Domain Software!
  90. --------------------------------------
  91.  
  92.       QDC 1.0 is (c) 1990 by Peter A. Dinda.  I wrote QDC to make life simpler
  93. for my coworkers and myself.  If you find QDC to be useful, please send $10
  94. or so to:
  95.  
  96.                        Peter A. Dinda Re: QDC
  97.                        404 N. Walbridge #7
  98.                        Madison, WI 53714
  99.  
  100.       Registering QDC gives you the right to modify the line 
  101.  
  102.                        #define OWNER "*UNREGISTERED*"
  103.  
  104. in the source code and recompile.  If you send an extra $5 to me, I will do
  105. this for you and send you a binary that will flash your name whenever you
  106. use it.  Comments, etc. can also be mailed to the above address or sent via
  107. email to dinda@VMS.macc.wisc.edu and via BBS to the MIC@MACC BBS
  108. (608) 263-6057.
  109.  
  110.  
  111. Why Should You Register QDC?
  112. ----------------------------
  113.  
  114.       Registering QDC gives you:
  115.  
  116.       1)   Peace of mind knowing you did the right thing helping to support
  117.            a poor college student who worked a long time on QDC.
  118.       2)   The right to recompile the source code with the "OWNER" line
  119.            changed to your name.
  120.  
  121.  
  122. Who Can't Use QDC
  123. -----------------
  124.  
  125.       Use of QDC by any military establishment is VERBOTEN.  Peace, dudes!
  126.  
  127.  
  128. Contents of the Distribution Archive
  129. ------------------------------------
  130.       
  131.       QDC.EXE    - The QDC program
  132.       QDC.C      - The Turbo C source code to QDC
  133.       QDCM.BAT   - Multiple copy extension to QDC
  134.       GETYN.COM  - Needed by QDCM.BAT
  135.       CONFIG.RAM - Example CONFIG.SYS file to implement RAM DISK
  136.       QDC.DOC    - This documentation
  137.  
  138.