home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / pcmagazi / 1986 / 08 / diskscan.doc < prev   
Text File  |  1986-09-11  |  5KB  |  91 lines

  1.  
  2.           DISKSCAN                               Charles Petzold
  3.           Command                       PC Magazine, Vol 5, No 8
  4.                Copyright 1986 Ziff-Davis Publishing Company
  5.           ______________________________________________________
  6.  
  7.           Purpose:  Locates and identifies disk errors on hard
  8.                     and floppy disks, Bernoulli Boxes or other
  9.                     similar storage devices.
  10.  
  11.           Format:   DISKSCAN [d:]
  12.  
  13.           Remarks:  The DOS "Abort, Retry, Ignore?" and the
  14.                     CHKDSK "x lost clusters found" messages tend
  15.                     to appear after it is too late to save
  16.                     possibly valuable data.  Regular use of
  17.                     DISKSCAN will show when a hard disk is
  18.                     beginning to go bad--for example, when a
  19.                     specific sector or two in an as-yet
  20.                     unallocated cluster has become unusable since
  21.                     the disk was formatted.  (DOS marks and does
  22.                     not use bad clusters it finds while
  23.                     formatting.  DISKSCAN reports these "Flagged
  24.                     as bad.")
  25.  
  26.                     DISKSCAN error messages include:
  27.  
  28.                     CRC Error: Data checksum as recalculated
  29.                          during read does not agree with checksum
  30.                          stored on disk when written.
  31.                     Sector Not Found: Sector boundary created
  32.                          during formatting is no longer readable.
  33.                     File Alloc. Table and Can't Read FAT: Very
  34.                          serious error:  Back up what you can
  35.                          with COPY and reformat disk before
  36.                          trying to put files back on it.
  37.                     Boot Sector:  If this sector of a hard disk
  38.                          goes bad, put a DOS disk in drive A: and
  39.                          issue SYS C: command.  Then COPY
  40.                          COMMAND.COM C:.  This will put a fresh
  41.                          copy of the system files on drive C:.
  42.                          If this does not work, boot up again
  43.                          from the external DOS floppy disk, back
  44.                          up all hard disk files, and reformat the
  45.                          hard disk.
  46.                     Root Directory:  Errors here could keep you
  47.                          from later being able to load a file or
  48.                          save updates to it.  CHKDSK will
  49.                          probably indicate unallocated cluster
  50.                          chains or cross-linked files, and you
  51.                          may have to use CHKDSK/F to save what
  52.                          you can.
  53.                     Unallocated:  As yet, not serious, as the bad
  54.                          sector is not being used.  When it is,
  55.                          though, and you try to save a file with
  56.                          this sector, you'll get an "Abort,
  57.                          Retry, Ignore" message.  Select "Ignore"
  58.                          to save what you can, then REName the
  59.                          file and save again under the new name.
  60.                          Use RECOVER filename with the original
  61.                          file; this will cause DOS to flag its
  62.                          cluster(s) as bad.  (DISKSCAN does not
  63.                          enter the bad cluster numbers in the
  64.                          File Allocation Table; FORMAT and
  65.                          RECOVER do.)  Then delete the original
  66.                          (RECOVERed) filename and check the
  67.                          second version you saved (under the new
  68.                          name) to see how much (if any) of it is
  69.                          usable.
  70.                     Used by file: While DISKSCAN reports the bad
  71.                          sector number, it does not do a cross-
  72.                          check to see which of your files is
  73.                          using that sector.  You may be able to
  74.                          identify this by issuing the command
  75.  
  76.                               SWEEP COPY *.* NUL
  77.  
  78.                          When COPY encounters the file with the
  79.                          bad sector it will report "Abort, Retry,
  80.                          Ignore."  Note the bad file and press
  81.                          "I" to continue.
  82.                     Read Fault and General Failure:  The sectors
  83.                          so designated are bad, but the errors
  84.                          reported don't fall into any of the
  85.                          above categories.
  86.  
  87.                     Notes:
  88.  
  89.                     1.   Requires DOS 2.0 or higher.
  90.  
  91.