Controls the initialization process.
The /etc/inittab file supplies the script to the init command's role as a general process dispatcher. The process that constitutes the majority of the init command's process dispatching activities is the /etc/getty line process, which initiates individual terminal lines. Other processes typically dispatched by the init command are daemons and the shell.
The /etc/inittab file is composed of entries that are position-dependent and have the following format:
Identifier:RunLevel:Action:Command
Note: The colon character ( : ) is used as a delimiter as well as a comment character. To comment out an inittab entry, add : at the beginning of the entry. For example:
:Identifier:RunLevel:Action:Command
Each entry is delimited by a newline character. A backslash (\) preceding a newline character indicates the continuation of an entry. There are no limits (other than maximum entry size) on the number of entries in the /etc/inittab file. The maximum entry size is 1024 characters. The entry fields are:
The following commands are the only supported method for modifying the records in the /etc/inittab file:
chitab | Changes records in the /etc/inittab file. |
lsitab | Lists records in the /etc/inittab file. |
mkitab | Adds records to the /etc/inittab file. |
rmitab | Removes records from the /etc/inittab file. |
ident:0123456789:Action:Command
ident:2:Action:Command
ident:1245:Action:Command
rc:2:wait:/etc/rc 2>&1 | alog -tboot > /dev/console
This file is part of Base Operating System (BOS) Runtime.
/etc/inittab | Specifies the path of the inittab file. |
/usr/sbin/getty | Indicates terminal lines. |
The chitabcommand, init command, lsitab command, mkitab command, rmitab command, telinit command.