0: | halt | |
---|---|---|
1: | single user mode | |
2: | multi-user without NFS (same as 3 if there's no networking) | |
3: | Full multi-user mode | |
4: | unused | |
5: | Full graphical mode | |
6: | Reboot |
How does init know which set of processes to run for each runlevel? It gets this information from a very important file, /etc/inittab. The Bourne scripts that init runs are all located in /etc/rc.d/init.d, but there are links to them in /etc/rc0.d, ..., rc6.d corresponding to the 7 normal runlevels. If inittab is missing or damaged, only single user mode is possible.
id:runlevel:action:processSuppose we have the entry
fb:235:wait:/sbin/myscriptin inittab. The field explanations are:
id: | A unique 1 or 2 character identifier which init uses internally. You can use any id you want, as long as you make sure each line has a unique id. The id for our sample entry is fb. | |
---|---|---|
runlevel: | Which runlevel this entry applies to. If you want this entry to be run for multiple runlevels, simply list them all. Thus our sample entry will be run whenever we enter runlevels 2, 3 or 5. | |
action: | Tells init what to do with the entry. Some actions are:
initdefault: init interprets this as the default run level wait: init starts the process and waits until that process exits once: init starts this process once when the runlevel is entered. respawn: The process will be restarted by init whenever it terminates . There are many more actions, and you can see what each does by looking at man inittab. | |
process: | The name of the process init has to start (not necessary if the action is initdefault). |
id:3:initdefault:which means that when you boot the computer up, you automatically go into runlevel 3. If you want to automatically go into the X GUI when you turn the compture on, change the 3 to a 5. Note that this IS the runlevel upon booting. If you change this value to 0 or 6, you will not be able to boot the computer without a rescue disk. Be careful when changing this line.
Next we have:
# System initialization.The file /etc/rc.d/rc.sysinit is run for ALL runlevels upon booting. That's why it's located in /etc/rc.d and not one of the /etc/rc.d/rc*.d directories. sysinit initializes networking, activates the swap partition, runs fsck, mounts the /proc partition, sets up plug-n-pray[TM] devices, sound modules, the hostname, NFS/NIS (or not) and RAID devices, and many more small tasks. Basically, this script is responsible for setting up the root filesystem and services necessary to allow single-user operation. This is quite the important script! On other flavors of Unix, this file is sometimes called bccheckrc.
si::sysinit:/etc/rc.d/rc.sysinit
After running rc.sysinit, we have:
l0:0:wait:/etc/rc.d/rc 0You can see that init runs a script called /etc/rc.d/rc no matter what runlevel we enter, however, it passes the argument "1" to rc when we enter runlevel 1, passes the argument "2" to rc when we enter runlevel 2, etc. The rc script is complex; to learn more about it, see my page on the rc script.
l1:1:wait:/etc/rc.d/rc 1
l2:2:wait:/etc/rc.d/rc 2
l3:3:wait:/etc/rc.d/rc 3
l4:4:wait:/etc/rc.d/rc 4
l5:5:wait:/etc/rc.d/rc 5
l6:6:wait:/etc/rc.d/rc 6
Next we have:
# Things to run in every runlevel. ud::once:/sbin/update # Trap CTRL-ALT-DELETE ca::ctrlaltdel:/sbin/shutdown -t3 -r now/sbin/update is a binary that starts bdflush daemon. I haven't got a clue what bdflush does. Here are the next lines from my inittab:
# Run gettys in standard runlevelsThe program mingetty is responsible for getting your login and password. Basically, it "watches" the tty specified by the argument. Note that for runlevels 2-5, we have 5 mingetty's. These correspond to your 5 virtual consoles that you can access using alt-F1, alt-F2, ... , alt-F5. In runlevel 1, we only have 1 mingetty--why is that? Because runlevel 1 is single user mode. Only one user is allowed on the system, so we only need one virtual console.
1:12345:respawn:/sbin/mingetty tty1
2:2345:respawn:/sbin/mingetty tty2
3:2345:respawn:/sbin/mingetty tty3
4:2345:respawn:/sbin/mingetty tty4
5:2345:respawn:/sbin/mingetty tty5
# Run xdm in runlevel 5
x:5:respawn:/usr/bin/X11/xdm -nodaemon
Lastly, in runlevel 5, we always run xdm which starts the X server (so you don't have to type startx to get the GUI up).
Instead of changing the runlevel using init, you could also change it using /sbin/telinit which is simply a symbolic link to init. I have no idea why telinit exists.