1 .\" Copyright (c) 1980, 1991, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" This code is derived from software contributed to Berkeley by
5 .\" Donn Seeley at Berkeley Software Design, Inc.
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\" notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\" notice, this list of conditions and the following disclaimer in the
14 .\" documentation and/or other materials provided with the distribution.
15 .\" 3. Neither the name of the University nor the names of its contributors
16 .\" may be used to endorse or promote products derived from this software
17 .\" without specific prior written permission.
19 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 .\" @(#)init.8 8.3 (Berkeley) 4/18/94
32 .\" $FreeBSD: src/sbin/init/init.8,v 1.22.2.11 2003/05/03 22:19:20 keramida Exp $
34 .Dd September 11, 2019
39 .Nd process control initialization
51 is the last stage of the boot process.
52 It normally runs the automatic reboot sequence as described in
54 and if this succeeds, begins multi-user operation.
55 If the reboot scripts fail,
57 commences single-user operation by giving
58 the super-user a shell on the console.
61 utility may be passed parameters
62 from the boot program to
63 prevent the system from going multi-user and to instead execute
64 a single-user shell without starting the normal daemons.
65 The system is then quiescent for maintenance work and may
66 later be made to go to multi-user by exiting the
67 single-user shell (with ^D).
73 start up command file in fastboot mode (skipping disk checks).
83 will require that the super-user password be
84 entered before the system will start a single-user shell.
85 The password check is skipped if the
90 The kernel runs with five different levels of security.
91 Any super-user process can raise the security level, but no process
93 The security levels are:
96 Permanently insecure mode \- always run the system in level 0 mode.
97 This is the default initial value.
99 Insecure mode \- immutable and append-only flags may be turned off.
100 All devices may be read or written subject to their permissions.
102 Secure mode \- the system immutable and system append-only flags may not
104 disks for mounted file systems,
108 may not be opened for writing;
111 may not be loaded or unloaded.
113 Highly secure mode \- same as secure mode, plus disks may not be
114 opened for writing (except by
116 whether mounted or not.
117 This level precludes tampering with file systems by unmounting them,
118 but also inhibits running
120 while the system is multi-user.
122 In addition, kernel time changes are restricted to less than or equal to one
123 second. Attempts to change the time by more than this will log the message
124 .Dq Time adjustment clamped to +1 second .
126 Network secure mode \- same as highly secure mode, plus
127 IP packet filter rules (see
131 cannot be changed and
133 configuration cannot be adjusted.
136 If the security level is initially nonzero, then
141 raises the level to 1 before going multi-user for the first time.
142 Since the level cannot be reduced, it will be at least 1 for
143 subsequent operation, even on return to single-user.
144 If a level higher than 1 is desired while running multi-user,
145 it can be set before going multi-user, e.g., by the startup script
151 variable to the required security level.
153 In multi-user operation,
156 processes for the terminal ports found in the file
160 utility reads this file and executes the command found in the second field,
161 unless the first field refers to a device in
163 which is not configured.
164 The first field is supplied as the final argument to the command.
165 This command is usually
168 opens and initializes the tty line
175 program, when a valid user logs in,
176 executes a shell for that user. When this shell
177 dies, either because the user logged out
178 or an abnormal termination occurred (a signal),
181 utility wakes up, deletes the user
184 file of current users and records the logout in the
196 utility can also be used to keep arbitrary daemons running,
197 automatically restarting them if they die.
198 In this case, the first field in the
200 file must not reference the path to a configured device node
201 and will be passed to the daemon
202 as the final argument on its command line.
203 This is similar to the facility offered in the
207 Line status (on, off, secure, getty, or window information)
208 may be changed in the
210 file without a reboot by sending the signal
215 .Dq Li "kill -HUP 1" .
216 On receipt of this signal,
221 When a line is turned off in
226 signal to the controlling process for the session associated with the line.
227 For any lines that were previously turned off in the
231 executes the command specified in the second field.
232 If the command or window field for a line is changed,
233 the change takes effect at the end of the current
234 login session (e.g., the next time
236 starts a process on the line).
237 If a line is commented out or deleted from
240 will not do anything at all to that line.
241 However, it will complain that the relationship between lines
244 file and records in the
247 so this practice is not recommended.
251 utility will terminate multi-user operations and resume single-user mode
255 .Dq Li "kill \-TERM 1" .
256 If there are processes outstanding that are deadlocked (because of
257 hardware or software failure),
259 will not wait for them all to die (which might take forever), but
260 will time out after 30 seconds and print a warning message.
264 utility will cease creating new processes
265 and allow the system to slowly die away, if it is sent a terminal stop
268 .Dq Li "kill \-TSTP 1" .
269 A later hangup will resume full
270 multi-user operations, or a terminate will start a single-user shell.
278 utility will terminate all possible processes (again, it will not wait
279 for deadlocked processes) and reboot the machine if sent the interrupt
282 .Dq Li "kill \-INT 1".
283 This is useful for shutting the machine down cleanly from inside the kernel
284 or from X when the machine appears to be hung.
288 utility will do the same, except it will halt the machine if sent
289 the user defined signal 1
291 or will halt and turn the power off (if hardware permits) if sent
292 the user defined signal 2
295 When shutting down the machine,
300 This script can be used to cleanly terminate specific programs such
303 (the InterNetNews server).
304 If this script does not terminate within 120 seconds,
306 will terminate it. The timeout can be configured via the
309 .Va kern.init_shutdown_timeout .
313 is so critical that if it dies, the system will reboot itself
315 If, at bootstrap time, the
317 process cannot be located, the system will panic with the message
318 .Dq "panic: init died (signal %d, exit %d)" .
320 If run as a user process as shown in the second synopsis line,
324 behavior, i.e. super-user can specify the desired
326 on a command line, and
328 will signal the original
332 .Bl -column Run-level SIGTERM
333 .It Sy "Run-level Signal Action"
334 .It Cm 0 Ta Dv SIGUSR2 Ta "Halt and turn the power off"
335 .It Cm 1 Ta Dv SIGTERM Ta "Go to single-user mode"
336 .It Cm 6 Ta Dv SIGINT Ta "Reboot the machine"
337 .It Cm c Ta Dv SIGTSTP Ta "Block further logins"
338 .It Cm q Ta Dv SIGHUP Ta Rescan the
343 .Bl -tag -width /etc/rc.shutdown -compact
345 system console device
347 terminal ports found in
349 .It Pa /var/run/utmpx
350 record of current users on the system
351 .It Pa /var/log/wtmpx
352 record of all logins and logouts
354 the terminal initialization information file
356 system startup commands
357 .It Pa /etc/rc.shutdown
358 system shutdown commands
362 .It "getty repeating too quickly on port %s, sleeping."
363 A process being started to service a line is exiting quickly
364 each time it is started.
365 This is often caused by a ringing or noisy terminal line.
367 Init will sleep for 30 seconds,
368 then continue trying to start the process.
370 .It "some processes would not die; ps axl advised."
372 is hung and could not be killed when the system was shutting down.
373 This condition is usually caused by a process
374 that is stuck in a device driver because of
375 a persistent device error condition.
401 behave as though they have security level \-1.
403 Setting the security level above 1 too early in the boot sequence can
406 from repairing inconsistent file systems. The
407 preferred location to set the security level is at the end of
409 after all multi-user startup actions are complete.