SHUTDOWN.8
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:2k
源码类别:

操作系统开发

开发平台:

C/C++

  1. .TH SHUTDOWN 8
  2. .SH NAME
  3. shutdown - graciously close the system down
  4. .SH SYNOPSIS
  5. .B shutdown
  6. .RB [ -hrRmk ]
  7. .RB [ -x
  8. .IR code ]
  9. .RI [ time-specification
  10. .RI [ message ]]
  11. .SH DESCRIPTION
  12. .B Shutdown
  13. is a program which allows a system operator to close down the system
  14. in an nice way. 
  15. .B Shutdown
  16. informs the users why and when the system is going down.  This warning
  17. is issued 10 minutes before shutdown time and every minute in the last
  18. 5 minutes.  At this time (5 minutes),
  19. .B shutdown
  20. creates a file
  21. .B /etc/nologin
  22. to prevent new users from logging in.
  23. .PP
  24. .B Shutdown
  25. keeps a logfile of shutdowns.  Every shutdown is registered in 
  26. .BR /usr/adm/wtmp ,
  27. if this file exists.  After these actions, a call is done to
  28. .BR reboot (2)
  29. which actually brings the system down.
  30. .PP
  31. .I Time-specification
  32. may be something like
  33. .BR 15:00 ,
  34. .BR 15.00 ,
  35. .BR +15 ,
  36. or
  37. .B now
  38. for a shutdown at 3pm (twice), 15 minutes from now, or immediately.
  39. .PP
  40. The message may be used to describe why the system is going down, it may
  41. also be typed on standard input with the
  42. .B -m
  43. option.
  44. .SH OPTIONS
  45. .TP
  46. .B -h
  47. This flag prevents the system from rebooting after the shutdown.  The
  48. system can now be powered off.  This is the default.
  49. .TP
  50. .B -r
  51. This flag indicates that the system should reboot after shutting down.
  52. .TP
  53. .B -R
  54. Reboot the system by resetting it.  Normally the kernel will try to return
  55. to the Boot Monitor.  With
  56. .B -R
  57. the system will receive a hardware reset.
  58. .TP
  59. .BI -x " code"
  60. Halt the system and let the Monitor execute the given code as if typed at
  61. the monitor prompt.  You can for instance use
  62. .B "-x 'boot hd0'"
  63. as a very fast way to reboot "from the top."
  64. .TP
  65. .B -m
  66. Allows the operator to type a shutdown message on standard input, that will
  67. be added to the messages displayed on all terminals.
  68. .TP
  69. .B -k
  70. This option gives the possibility of terminating an already started
  71. shutdown.  This is only possible if shutdown time has not yet arrived.
  72. .TP
  73. .B -C
  74. Check if the system crashed.  This option is not used at shutdown time,
  75. but at reboot time.  It tells if the file systems should be checked by
  76. testing if the last entry in the wtmp file is a shutdown entry.  (A
  77. crude replacement for a file system clean flag.)
  78. .SH FILES
  79. /usr/adm/wtmp, /etc/nologin, /usr/adm/authlog
  80. .SH "SEE ALSO"
  81. .BR reboot (2),
  82. .BR wall (1),
  83. .BR halt (8),
  84. .BR boot (8).
  85. .SH AUTHOR
  86. Edvard Tuinder (v892231@si.hhs.NL)