Written 1996, 2000 by Werner Almesberger and
Hans Lermen
initrd provides the capability to load a RAM disk by the boot loader. This RAM disk can then be mounted as the root file system and programs can be run from it. Afterwards, a new root file system can be mounted from a different device. The previous root (from initrd) is then moved to a directory and can be subsequently unmounted.
initrd is mainly designed to allow system startup to occur in two phases, where the kernel comes up with a minimum set of compiled-in drivers, and where additional modules are loaded from initrd.
This document gives a brief overview of the use of initrd. A more detailed discussion of the boot process can be found in 1?.
When using initrd, the system typically boots as follows:
Note that changing the root directory does not involve unmounting it. It is therefore possible to leave processes running on initrd during that procedure. Also note that file systems mounted under initrd continue to be accessible.
initrd adds the following new options:
First, a directory for the initrd file system has to be created on the "normal" root file system, e.g.
The name is not relevant. More details can be found on the pivot_root(2) man page.
If the root file system is created during the boot procedure (i.e. if you're building an install floppy), the root file system creation procedure should create the /initrd directory.
Second, the kernel has to be compiled with RAM disk support and with support for the initial RAM disk enabled. Also, at least all components needed to execute programs from initrd (e.g. executable format and file system) must be compiled into the kernel.
Third, you have to create the RAM disk image. This is done by creating a file system on a block device, copying files to it as needed, and then copying the content of the block device to the initrd file. With recent kernels, at least three types of devices are suitable for that:
We'll describe the loopback device method:
For experimenting with initrd, you may want to take a rescue floppy and only add a symbolic link from /linuxrc to /bin/sh. Alternatively, you can try the experimental newlib environment 2? to create a small initrd.
if not using devfs, or
root=/dev/rd/0 init=/linuxrc rw
if using devfs. (rw is only necessary if writing to the initrd file system.)
With LOADLIN, you simply execute
LOADLIN <kernel> initrd=<disk_image>
e.g. LOADLIN C:\LINUX\BZIMAGE initrd=C:\LINUX\INITRD.GZ root=/dev/ram0
init=/linuxrc rw
With LILO, you add the option INITRD=<path> to either the global section or to the section of the respective kernel in /etc/lilo.conf, and pass the options using APPEND, e.g.
image = /bzImage
initrd = /boot/initrd.gz append = "root=/dev/ram0 init=/linuxrc rw"
and run /sbin/lilo
For other boot loaders, please refer to the respective documentation.
Now you can boot and enjoy using initrd.
When finished with its duties, linuxrc typically changes the root device and proceeds with starting the Linux system on the "real" root device.
The procedure involves the following steps:
Mounting the new root file system is easy: it just needs to be mounted on
Where what-follows is a program under the new root, e.g. /sbin/init If the new root file system will be used with devfs and has no valid /dev directory, devfs must be mounted before invoking chroot in order to provide /dev/console.
Note: implementation details of pivot_root may change with time. In order to ensure compatibility, the following points should be observed:
It is also possible to use initrd with an NFS-mounted root, see the pivot_root(8) man page for details.
Note: if linuxrc or any program exec'ed from it terminates for some reason, the old change_root mechanism is invoked (see section "Obsolete root change mechanism").
The main motivation for implementing initrd was to allow for modular kernel configuration at system installation. The procedure would work as follows:
The key role of initrd here is to re-use the configuration data during normal system operation without requiring the use of a bloated "generic" kernel or re-compiling or re-linking the kernel.
A second scenario is for installations where Linux runs on systems with different hardware configurations in a single administrative domain. In such cases, it is desirable to generate only a small set of kernels (ideally only one) and to keep the system-specific part of configuration information as small as possible. In this case, a common initrd could be generated with all the necessary modules. Then, only /linuxrc or a file read by it would have to be different.
A third scenario are more convenient recovery disks, because information like the location of the root FS partition doesn't have to be provided at boot time, but the system loaded from initrd can invoke a user-friendly dialog and it can also perform some sanity checks (or even some form of auto-detection).
Last not least, CD-ROM distributors may use it for better installation from CD, e.g. by using a boot floppy and bootstrapping a bigger RAM disk via initrd from CD; or by booting via a loader like LOADLIN or directly from the CD-ROM, and loading the RAM disk from CD without need of floppies.
The following mechanism was used before the introduction of pivot_root. Current kernels still support it, but you should not rely on its continued availability.
It works by mounting the "real" root device (i.e. the one set with rdev in the kernel image or with root=... at the boot command line) as the root file system when linuxrc exits. The initrd file system is then unmounted, or, if it is still busy, moved to a directory /initrd, if such a directory exists on the new root file system.
In order to use this mechanism, you do not have to specify the boot command options root, init, or rw. (If specified, they will affect the real root file system, not the initrd environment.)
If /proc is mounted, the "real" root device can be changed from within linuxrc by writing the number of the new root FS device to the special file /proc/sys/kernel/real-root-dev, e.g.
Note that the mechanism is incompatible with NFS and similar file systems.
This old, deprecated mechanism is commonly called "change_root", while the new, supported mechanism is called "pivot_root".
1? Almesberger, Werner; "Booting Linux: The History and the Future"
ftp://icaftp.epfl.ch/pub/people/almesber/booting/bootinglinux-current.ps.gz
2? newlib package (experimental), with initrd example
3? Brouwer, Andries; "util-linux: Miscellaneous utilities for Linux"
See also initrd(4)
lib/BlockParser.php:505: Notice: Undefined property: _tight_top