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

操作系统开发

开发平台:

WINDOWS

  1. MKNOD(8)                  Minix Programmer's Manual                   MKNOD(8)
  2. NAME
  3.      mknod - create a special file
  4. SYNOPSIS
  5.      mknod file [b] [c] major minor
  6.      mknod file p
  7. EXAMPLES
  8.      mknod /dev/plotter c 7 0
  9.                          # Create special file for a plotter
  10.      mknod /dev/fd3 b 2 3
  11.                          # Create a device for diskette drive 3
  12.      mknod /tmp/stream p # Create a named pipe
  13. DESCRIPTION
  14.      Mknod creates a special file named file , with the  indicated  major  and
  15.      minor  device  numbers.  The second argument specifies a block special, a
  16.      character special, or a named pipe.   Named  pipes  do  not  have  device
  17.      numbers so they are omitted.
  18. SEE ALSO
  19.      mkfifo(1), mknod(2).
  20.                                                                              1