NCHECK.8
Upload User: jnzhq888
Upload Date: 2007-01-18
Package Size: 51694k
Code Size: 1k
Category:

OS Develop

Development Platform:

WINDOWS

  1. NCHECK(8)                 Minix Programmer's Manual                  NCHECK(8)
  2. NAME
  3.      ncheck - i-node to name converter
  4. SYNOPSIS
  5.      ncheck [-i numbers] [-a] [-s] file_system
  6. OPTIONS
  7.      -a   List all files, even . and ..
  8.      -i   Followed by a list of i-nodes
  9.      -s   List only special and setuid files
  10. EXAMPLES
  11.      ncheck - /dev/fd0   # List everything on /dev/fd0
  12.      ncheck -i 10,15 /dev/fd0
  13.                          # List i-nodes 10 and 15 on /dev/fd0
  14. DESCRIPTION
  15.      Sometimes one knows about an i-node number and wants  to  find  the  file
  16.      name that goes with it.  This program makes that mapping.  The default is
  17.      to list everything on the device, but the -i flag restricts the  list  to
  18.      specified  i-nodes  and  the  -s  flag  restricts it to special files and
  19.      setuid files (to look for possible security violations).
  20. SEE ALSO
  21.      fsck(1).
  22.                                                                              1