Библиотека сайта rus-linux.net
9.3. Run levels
A run level is a state of init and the whole system that defines what system services are operating. Run levels are identified by numbers, see Table 9-1. There is no consensus of how to use the user defined run levels (2 through 5). Some system administrators use run levels to define which subsystems are working, e.g., whether X is running, whether the network is operational, and so on. Others have all subsystems always running or start and stop them individually, without changing run levels, since run levels are too coarse for controlling their systems. You need to decide for yourself, but it might be easiest to follow the way your Linux distribution does things.
Table 9-1. Run level numbers
0 | Halt the system. |
1 | Single-user mode (for special administration). |
2-5 | Normal operation (user defined). |
6 | Reboot. |
/etc/inittab
by lines like
the following:
l2:2:wait:/etc/init.d/rc 2 |
/etc/init.d/rc
command runs whatever
commands are necessary to start and stop services to enter run
level 2.The command in the fourth field does all the hard work of setting up a run level. It starts services that aren't already running, and stops services that shouldn't be running in the new run level any more. Exactly what the command is, and how run levels are configured, depends on the Linux distribution.
/etc/inittab
that specifies the default
run level:
id:2:initdefault: |
single
or emergency
.
Kernel command line arguments can be given via LILO, for example.
This allows you to choose the single user mode (run level 1).While the system is running, the telinit
command can change the run level. When the run level is
changed, init runs the relevant command from
/etc/inittab
.
Prev | Home | Next |
Configuring init to start
getty: the
/etc/inittab file | Up | Special configuration in
/etc/inittab |