READALL.1
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:1k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. READALL(1)                Minix Programmer's Manual                 READALL(1)
  2. NAME
  3.      readall - read a device quickly to check for bad blocks
  4. SYNOPSIS
  5.      readall [-bt] file
  6. OPTIONS
  7.      -b   Produce shell script on stdout that calls badblocks
  8.      -t   Just print device size
  9. EXAMPLES
  10.      readall /dev/hd0    # Read all of /dev/hd0
  11.      readall -b /dev/hd1 >s
  12.                          # Generate shell script on s
  13. DESCRIPTION
  14.      Readall reads all of the named device in large chunks. It  reports  about
  15.      blocks  that  it  cannot  read.  Unlike diskcheck, it does not attempt to
  16.      write on the disk, making it safer to use when one  is  worried  about  a
  17.      sick  system.   When  the  -b flag is given, the output is a shell script
  18.      that calls the badblocks program to marked all the bad blocks.   Whenever
  19.      installing MINIX, it is wise to run readall with the -b flag first on all
  20.      the hard disks.
  21. SEE ALSO
  22.      badblocks(8).
  23.                                                                              1