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