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

操作系统开发

开发平台:

WINDOWS

  1. .TH TTYTAB
  2. .SH NAME
  3. ttytab - table of login terminals
  4. .SH SYNOPSIS
  5. .B /etc/ttytab
  6. .SH DESCRIPTION
  7. .de SP
  8. .if t .sp 0.4
  9. .if n .sp
  10. ..
  11. The
  12. .B ttytab
  13. file lists all the terminal devices that one can login on.  It is a simple
  14. text file that contains lines of the form:
  15. .PP
  16. .RS
  17. .ft I
  18. name type "getty" "init"
  19. .ft R
  20. .RE
  21. .PP
  22. The
  23. .I name
  24. and
  25. .I type
  26. fields are simple words,
  27. .I name
  28. is the name of the terminal device with
  29. .B /dev
  30. stripped off, and
  31. .I type
  32. tells the type of terminal to initialize the
  33. .B TERM
  34. environment variable.
  35. .PP
  36. The
  37. .I getty
  38. and
  39. .I init
  40. fields may name commands that are run to allow one to login on the line, or
  41. to initialize the line.  Both these fields may be more than one word if
  42. the whole field is enclosed in double quotes.
  43. .I Getty
  44. is usually simply the word
  45. .BR getty ,
  46. the command that prints a system identification banner and allows on to type
  47. a name to log in.
  48. .I Init
  49. is usually an
  50. .B stty
  51. command to set the baud rate and parity of a serial line.
  52. .PP
  53. The
  54. .I init
  55. field may be omitted to indicate that no initialization is necessary, and the
  56. .I getty
  57. field may be left out to not start a login process.  Terminals should not be
  58. left out, because their place in the
  59. .B ttytab
  60. file determines their slot number as returned by
  61. .BR ttyslot (3).
  62. .PP
  63. Comments (introduced by #) and empty lines are ignored.
  64. .SH EXAMPLE
  65. A
  66. .B ttytab
  67. for the console, two serial lines, and a pseudo tty entry:
  68. .PP
  69. .RS
  70. .nf
  71. .ta +12 +12 +12
  72. console minix getty
  73. tty00 vt100 getty "stty 9600"
  74. tty01 dialup getty "stty 38400"
  75. ttyp0 network
  76. .fi
  77. .RE
  78. .SH ENVIRONMENT
  79. .TP 15n
  80. .B TERM
  81. Terminal type
  82. .SH NOTES
  83. It is customary to set the type to
  84. .B dialup
  85. for a dialin line.  One can check for that name in one's
  86. .BR .profile .
  87. .SH "SEE ALSO"
  88. .BR gettyent (3),
  89. .BR ttyslot (3),
  90. .BR init (8).
  91. .SH AUTHOR
  92. Kees J. Bot (kjb@cs.vu.nl)