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

操作系统开发

开发平台:

WINDOWS

  1. MAKEDEV(8)                Minix Programmer's Manual                 MAKEDEV(8)
  2. NAME
  3.      MAKEDEV, DESCRIBE - make/describe device files
  4. SYNOPSIS
  5.      MAKEDEV [-n] key ...
  6.      DESCRIBE [device] ...
  7. DESCRIPTION
  8.      MAKEDEV may be used to create the device files normally found in the /dev
  9.      directory.   The  key  arguments  are simply the names of the devices you
  10.      want.  MAKEDEV knows about all supported devices and will create them  in
  11.      the  current  directory with the proper owner and mode.  For many devices
  12.      MAKEDEV will not only create the device you want, but  also  the  devices
  13.      related  to it that you will probably want too.  Naming one floppy device
  14.      will create all floppy devices for the same drive for instance.
  15.      Call MAKEDEV without arguments to see a list of keys that it understands.
  16.      Then use the -n flag to make the script echo the commands it will execute
  17.      the next time when you call it without that flag.
  18.      The special key std must be given alone to MAKEDEV.  This key will create
  19.      all standard devices.
  20.      The command DESCRIBE will give you a  one-line  description  of  a  given
  21.      device.  It will by default list all devices in /dev.
  22. SEE ALSO
  23.      mknod(8).
  24. BUGS
  25.      MAKEDEV's eagerness to create devices may cause many "File exists" errors
  26.      from mknod.
  27. AUTHOR
  28.      Kees J. Bot (kjb@cs.vu.nl)
  29.                                                                              1