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

操作系统开发

开发平台:

WINDOWS

  1. FSCK(1)                   Minix Programmer's Manual                    FSCK(1)
  2. NAME
  3.      fsck, fsck1 - perform file system consistency check
  4. SYNOPSIS
  5.      fsck [-aclmrs] [device] ...
  6. OPTIONS
  7.      -a   Automatically repair inconsistencies
  8.      -c   Check and list only the specified i-nodes
  9.      -l   List the files and directories in the filesytem
  10.      -r   Prompt user for repairs if inconsistencies are found
  11.      -s   List the superblock of the file system
  12. EXAMPLES
  13.      fsck /dev/hd4       # Check file system on /dev/hd4
  14.      fsck -a /dev/at0    # Automatically fix errors on /dev/at0
  15.      fsck -l /dev/fd0    # List the contents of /dev/fd0
  16.      fsck -c 2 3 /dev/hd3
  17.                          # Check and list /dev/hd3 i-nodes 2 & 3
  18. DESCRIPTION
  19.      Fsck performs consistency checks on the file systems which reside on  the
  20.      specified  devices.  Fsck1 is an alternate version for use on obsolete V1
  21.      file systems.  When either the -a or -r flags are given, the file  system
  22.      will  be  repaired if errors are found.  Before running fsck on a mounted
  23.      file system, it must first be unmounted.  Trying to repair a mounted file
  24.      system is dangerous and should not be attempted.
  25.      To repair the root file system (which cannot be  unmounted),  first  type
  26.      CTRL-F9  at  the  console  to kill any and all processes.  Log back in as
  27.      root, type sync to force any buffered changes to disk, run  fsck  on  the
  28.      root file system and immediately reboot the computer by typing reboot.
  29.      It is necessary to kill all processes  before  repairing  the  root  file
  30.      system  to  prevent  them  from  modifying  any disk blocks while fsck is
  31.      running.  This is only necessary for the root file system, any other file
  32.      system can simply be unmounted before it is checked.
  33.                                                                              1
  34. FSCK(1)                   Minix Programmer's Manual                    FSCK(1)
  35. SEE ALSO
  36.      mkfs(1), mount(1).
  37.                                                                              2