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

操作系统开发

开发平台:

WINDOWS

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