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

操作系统开发

开发平台:

WINDOWS

  1. TTYTAB()                  Minix Programmer's Manual                   TTYTAB()
  2. NAME
  3.      ttytab - table of login terminals
  4. SYNOPSIS
  5.      /etc/ttytab
  6. DESCRIPTION
  7.      The ttytab file lists all the terminal devices that one can login on.  It
  8.      is a simple text file that contains lines of the form:
  9.           name    type    "getty" "init"
  10.      The name and type fields are simple  words,  name  is  the  name  of  the
  11.      terminal  device  with  /dev  stripped  off,  and  type tells the type of
  12.      terminal to initialize the TERM environment variable.
  13.      The getty and init fields may name commands that are run to allow one  to
  14.      login  on  the line, or to initialize the line.  Both these fields may be
  15.      more than one word if the whole  field  is  enclosed  in  double  quotes.
  16.      Getty  is usually simply the word getty, the command that prints a system
  17.      identification banner and allows on to type a name to log  in.   Init  is
  18.      usually an stty command to set the baud rate and parity of a serial line.
  19.      The init field may be omitted  to  indicate  that  no  initialization  is
  20.      necessary,  and  the  getty  field  may  be left out to not start a login
  21.      process.  Terminals should not be left out, because their  place  in  the
  22.      ttytab file determines their slot number as returned by ttyslot(3).
  23.      Comments (introduced by #) and empty lines are ignored.
  24. EXAMPLE
  25.      A ttytab for the console, two serial lines, and a pseudo tty entry:
  26.           console     minix       getty
  27.           tty00       vt100       getty       "stty 9600"
  28.           tty01       dialup      getty       "stty 38400"
  29.           ttyp0       network
  30. ENVIRONMENT
  31.      TERM           Terminal type
  32. NOTES
  33.      It is customary to set the type to dialup for a  dialin  line.   One  can
  34.      check for that name in one's .profile.
  35.                                                                              1
  36. TTYTAB()                  Minix Programmer's Manual                   TTYTAB()
  37. SEE ALSO
  38.      gettyent(3), ttyslot(3), init(8).
  39. AUTHOR
  40.      Kees J. Bot (kjb@cs.vu.nl)
  41.                                                                              2