]> git.ipfire.org Git - thirdparty/dracut.git/blame - dracut.asc
modsign: do not install, if no keys present
[thirdparty/dracut.git] / dracut.asc
CommitLineData
888d53f2
HH
1dracut
2======
3Harald Hoyer <harald@redhat.com>
4v2.0, March 2011
5
6:language: bash
7
8= Introduction
9This section is a modified version of
10http://en.wikipedia.org/wiki/Initrd which is licensed under the
11Creative Commons Attribution/Share-Alike License.
12
13== Definition
14An _initial ramdisk_ is a temporary file system used in the boot process of the
15Linux kernel. _initrd_ and _initramfs_ refer to slightly different schemes for
16loading this file system into memory. Both are commonly used to make
17preparations before the real root file system can be mounted.
18
19== Rationale
20Many Linux distributions ship a single, generic kernel image that is intended to
21boot as wide a variety of hardware as possible. The device drivers for this
22generic kernel image are included as loadable modules, as it is not possible to
23statically compile them all into the one kernel without making it too large to
24boot from computers with limited memory or from lower-capacity media like floppy
25disks.
26
27This then raises the problem of detecting and loading the modules necessary to
28mount the root file system at boot time (or, for that matter, deducing where or
29what the root file system is).
30
31To further complicate matters, the root file system may be on a software RAID
32volume, LVM, NFS (on diskless workstations), or on an encrypted partition. All
33of these require special preparations to mount.
34
35Another complication is kernel support for hibernation, which suspends the
36computer to disk by dumping an image of the entire system to a swap partition or
37a regular file, then powering off. On next boot, this image has to be made
38accessible before it can be loaded back into memory.
39
40To avoid having to hardcode handling for so many special cases into the kernel,
41an initial boot stage with a temporary root file system
42—now dubbed early user space— is used. This root file system would contain
43user-space helpers that would do the hardware detection, module loading and
44device discovery necessary to get the real root file system mounted.
45
46== Implementation
47An image of this initial root file system (along with the kernel image) must be
48stored somewhere accessible by the Linux bootloader or the boot firmware of the
49computer. This can be:
50
51* The root file system itself
52* A boot image on an optical disc
53* A small ext2/ext3 or FAT-formatted partition on a local disk
54 (a _boot partition_)
55* A TFTP server (on systems that can boot from Ethernet)
56
57The bootloader will load the kernel and initial root file system image into
58memory and then start the kernel, passing in the memory address of the image.
59
60Depending on which algorithms were compiled statically into it, the kernel can
61currently unpack initrd/initramfs images compressed with gzip, bzip2 and LZMA.
62
63== Mount preparations
64dracut can generate a customized initrams image which contains only whatever is
65necessary to boot some particular computer, such as ATA, SCSI and filesystem
66kernel modules (host-only mode).
67
68dracut can also generate a more generic initramfs image (default mode).
69
70dracut's initramfs starts only with the device name of the root file system (or
71its UUID) and must discover everything else at boot time. A complex cascade of
72tasks must be performed to get the root file system mounted:
73
74* Any hardware drivers that the boot process depends on must be loaded. All
75kernel modules for common storage devices are packed onto the initramfs and then
76udev pulls in modules matching the computer's detected hardware.
77
78* On systems which display a boot rd.splash screen, the video hardware must be
79initialized and a user-space helper started to paint animations onto the display
80in lockstep with the boot process.
81
1d22c670 82* If the root file system is on NFS, dracut does then:
888d53f2
HH
83** Bring up the primary network interface.
84** Invoke a DHCP client, with which it can obtain a DHCP lease.
85** Extract the name of the NFS share and the address of the NFS server from the
86lease.
87** Mount the NFS share.
88
89* If the root file system appears to be on a software RAID device, there is no
90way of knowing which devices the RAID volume spans; the standard MD utilities
91must be invoked to scan all available block devices with a raid signature and
92bring the required ones online.
93
94* If the root file system appears to be on a logical volume, the LVM utilities
95must be invoked to scan for and activate the volume group containing it.
96
97* If the root file system is on an encrypted block device:
98** Invoke a helper script to prompt the user to type in a passphrase and/or
99insert a hardware token (such as a smart card or a USB security dongle).
100
101* Create a decryption target with the device mapper.
102
103dracut uses udev, an event-driven hotplug agent, which invokes helper programs
104as hardware devices, disk partitions and storage volumes matching certain rules
105come online. This allows discovery to run in parallel, and to progressively
106cascade into arbitrary nestings of LVM, RAID or encryption to get at the root
107file system.
108
109When the root file system finally becomes visible:
110
111* Any maintenance tasks which cannot run on a mounted root file system
112are done.
113* The root file system is mounted read-only.
114* Any processes which must continue running (such as the rd.splash screen helper
115and its command FIFO) are hoisted into the newly-mounted root file system.
116
117The final root file system cannot simply be mounted over /, since that would
118make the scripts and tools on the initial root file system inaccessible for any
119final cleanup tasks. On an initramfs, the initial root file system cannot be
120rotated away. Instead, it is simply emptied and the final root file system
121mounted over the top.
122
a1ebd771
HH
123If the systemd module is used in the initramfs, the ordering of the services
124started looks like <<dracutbootup7>>.
125
1d22c670
HH
126== Dracut on shutdown
127
128On a systemd driven system, the dracut initramfs is also used for the shutdown procedure.
129
130The following steps are executed during a shutdown:
131
132* systemd switches to the shutdown.target
133* systemd starts /lib/systemd/system/shutdown.target.wants/dracut-shutdown.service
134* dracut-shutdown.service executes /usr/lib/dracut/dracut-initramfs-restore
135 which unpacks the initramfs to /run/initramfs
136* systemd finishes shutdown.target
137* systemd kills all processes
138* systemd tries to unmount everything and mounts the remaining read-only
139* systemd checks, if there is a /run/initramfs/shutdown executable
140* if yes, it does a pivot_root to /run/initramfs and executes ./shutdown.
141 The old root is then mounted on /oldroot. /usr/lib/dracut/modules.d/99shutdown/shutdown.sh is the shutdown executable.
142* shutdown will try to umount every /oldroot mount and calls the various shutdown hooks from the dracut modules
143
144This ensures, that all devices are disassembled and unmounted cleanly.
145
888d53f2
HH
146= User Manual
147
148== Creating an initramfs Image
149To create a initramfs image, the most simple command is:
150----
151# dracut
152----
153
154This will generate a general purpose initramfs image, with all possible
155functionality resulting of the combination of the installed dracut modules and
156system tools. The image is /boot/initramfs-_++<kernel version>++_.img and
157contains the kernel modules of the currently active kernel with version
158_++<kernel version>++_.
159
160If the initramfs image already exists, dracut will display an error message, and
161to overwrite the existing image, you have to use the --force option.
162----
163# dracut --force
164----
165
166If you want to specify another filename for the resulting image you would issue
167a command like:
168----
169# dracut foobar.img
170----
171
172To generate an image for a specific kernel version, the command would be:
173----
174# dracut foobar.img 2.6.40-1.rc5.f20
175----
176
177A shortcut to generate the image at the default location for a specific kernel
178version is:
179----
e65caf36 180# dracut --kver 2.6.40-1.rc5.f20
888d53f2
HH
181----
182
183If you want to create lighter, smaller initramfs images, you may want to specify
184the --host-only or -H option. Using this option, the resulting image will
185contain only those dracut modules, kernel modules and filesystems, which are
186needed to boot this specific machine. This has the drawback, that you can't put
187the disk on another controller or machine, and that you can't switch to another
188root filesystem, without recreating the initramfs image. The usage of the
189--host-only option is only for experts and you will have to keep the broken
190pieces. At least keep a copy of a general purpose image (and corresponding
191kernel) as a fallback to rescue your system.
192
193=== Inspecting the Contents
194To see the contents of the image created by dracut, you can use the lsinitrd tool.
195----
196# lsinitrd /boot/initramfs-$(uname -r).img | less
197----
198
199To display the contents of a file in the initramfs also use the lsinitrd tool:
200----
201# lsinitrd /boot/initramfs-$(uname -r).img /etc/ld.so.conf
202include ld.so.conf.d/*.conf
203----
204
205=== Adding dracut Modules
206Some dracut modules are turned off by default and have to be activated manually.
207You can do this by adding the dracut modules to the configuration file
208_/etc/dracut.conf_ or _/etc/dracut.conf.d/myconf.conf_. See <<dracutconf5>>.
209You can also add dracut modules on the command line
210by using the -a or --add option:
211----
212# dracut --add bootchart initramfs-bootchart.img
213----
214
215To see a list of available dracut modules, use the --list-modules option:
216----
217# dracut --list-modules
218----
219
220or, if you have a dracut version earlier than +008+, issue the command:
221----
222# for mod in /usr/lib/dracut/modules.d/*; do echo ${mod##*/??}; done
223----
224
225=== Omitting dracut Modules
226Sometimes you don't want a dracut module to be included for reasons of speed,
227size or functionality. To do this, either specify the omit_dracutmodules
228variable in the _dracut.conf_ or _/etc/dracut.conf.d/myconf.conf_ configuration
229file (see <<dracutconf5>>), or use the -o or --omit option
230on the command line:
231----
232# dracut -o "multipath lvm" no-multipath-lvm.img
233----
234
235=== Adding Kernel Modules
236If you need a special kernel module in the initramfs, which is not
237automatically picked up by dracut, you have the use the --add-drivers option
238on the command line or the drivers vaiable in the _/etc/dracut.conf_
239or _/etc/dracut.conf.d/myconf.conf_ configuration file (see <<dracutconf5>>):
240----
241# dracut --add-drivers mymod initramfs-with-mymod.img
242----
243
244== Boot parameters
245The generated initramfs.img file normally does not contain any system
246configuration files (except for some special exceptions), so the configuration
247has to be done on the kernel command line. With this flexibility, you can easily
248boot from a changed root partition, without the need to recompile the initramfs
249image. So, you could completly change your root partition (move it inside a md
250raid with encryption and LVM on top), as long as you specify the correct
251filesystem LABEL or UUID on the kernel command line for your root device, dracut
252will find it and boot from it.
253
254The kernel command line usually can be configured in _/boot/grub/grub.conf_, if
255grub is your bootloader and it also can be edited in the real boot process in
256the grub menu.
257
258The kernel command line can also be provided by the dhcp server with the
259root-path option. See <<NetworkBoot>>.
260
261For a full reference of all kernel command line parameters, see <<dracut8>>.
262
263=== Specifying the root Device
264This is the only option dracut really needs to boot from your root partition.
265Because your root partition can live in various environments, there are a lot of
266formats for the root= option. The most basic one is root=_++<path to device
267node>++_:
268----
269root=/dev/sda2
270----
271
272Because device node names can change, dependent on the drive ordering, you are
273encouraged to use the filesystem identifier (UUID) or filesystem label (LABEL)
274to specify your root partition:
275----
276root=UUID=19e9dda3-5a38-484d-a9b0-fa6b067d0331
277----
278
279or
280
281----
282root=LABEL=myrootpartitionlabel
283----
284
285To see all UUIDs or LABELs on your system, do:
286----
287# ls -l /dev/disk/by-uuid
288----
289
290or
291
292----
293# ls -l /dev/disk/by-label
294----
295
296If your root partition is on the network see <<NetworkBoot>>.
297
298=== Keyboard Settings
299If you have to input passwords for encrypted disk volumes, you might want to set
300the keyboard layout and specify a display font.
301
302A typical german kernel command would contain:
303----
304vconsole.font=latarcyrheb-sun16 vconsole.keymap=de-latin1-nodeadkeys locale.LANG=de_DE.UTF-8
305----
306
307Setting these options can override the setting stored on your system, if you use
308a modern init system, like systemd.
309
310For dracut versions prior to version +008+ the line would look like:
311----
312LANG=de_DE.UTF-8 SYSFONT=latarcyrheb-sun16 KEYBOARDTYPE=pc KEYTABLE=de-latin1-nodeadkeys
313----
314
315=== Blacklisting Kernel Modules
316Sometimes it is required to prevent the automatic kernel module loading of a
317specific kernel module. To do this, just add rd.blacklist=_++<kernel module
318name>++_, with _++<kernel module name>++_ not containing the _.ko_
319suffix, to the kernel command line. For example:
320----
321rd.driver.blacklist=mptsas rd.driver.blacklist=nouveau
322----
323
324The option can be specified multiple times on the kernel command line.
325
326=== Speeding up the Boot Process
327If you want to speed up the boot process, you can specify as much information
328for dracut on the kernel command as possible. For example, you can tell dracut,
329that you root partition is not on a LVM volume or not on a raid partition, or
330that it lives inside a specific crypto LUKS encrypted volume. By default, dracut
331searches everywhere. A typical dracut kernel command line for a plain primary or
332logical partition would contain:
333----
334rd.luks=0 rd.lvm=0 rd.md=0 rd.dm=0
335----
336
337On systems with dracut version prior to +008+ the line would look like:
338----
339rd_NO_LUKS rd_NO_LVM rd_NO_MD rd_NO_DM
340----
341
342This turns off every automatic assembly of LVM, MD raids, DM raids and crypto LUKS.
343
344Of course, you could also omit the dracut modules in the initramfs creation
345process, but then you would lose the posibility to turn it on on demand.
346
347
348[[Injecting]]
349=== Injecting custom Files
350To add your own files to the initramfs image, you have several possibilities.
351
352The --include option let you specify a source path and a target path. For example
353----
3cff5fb5 354# dracut --include cmdline-preset /etc/cmdline.d/mycmdline.conf initramfs-cmdline-pre.img
888d53f2
HH
355----
356will create an initramfs image, where the file cmdline-preset will be copied
3cff5fb5 357inside the initramfs to _/etc/cmdline.d/mycmdline.conf_. --include can only be specified once.
888d53f2
HH
358
359
360----
361# mkdir rd.live.overlay
362# mkdir rd.live.overlay/etc
363# mkdir rd.live.overlay/etc/conf.d
3cff5fb5
HH
364# mkdir rd.live.overlay/etc/cmdline.d
365# echo "ip=auto" >> rd.live.overlay/etc/cmdline.d/mycmdline.conf
366# echo export FOO=testtest >> rd.live.overlay/etc/conf.d/testvar.conf
367# echo export BAR=testtest >> rd.live.overlay/etc/conf.d/testvar.conf
888d53f2
HH
368# tree rd.live.overlay/
369rd.live.overlay/
370└── etc
3cff5fb5
HH
371 ├── cmdline.d
372 │   └── mycmdline.conf
373 └── conf.d
374 └── testvar.conf
375
888d53f2
HH
376# dracut --include rd.live.overlay / initramfs-rd.live.overlay.img
377----
378
379This will put the contents of the rd.live.overlay directory into the root of the
380initramfs image.
381
382The --install option let you specify several files, which will get installed in
383the initramfs image at the same location, as they are present on initramfs
384creation time.
385
386
387----
388# dracut --install 'strace fsck.ext3 ssh' initramfs-dbg.img
389----
390
391This will create an initramfs with the strace, fsck.ext3 and ssh executables,
392together with the libraries needed to start those. The --install option can be
393specified multiple times.
394
395
396[[NetworkBoot]]
397== Network Boot
398
399If your root partition is on a network drive, you have to have the network
400dracut modules installed to create a network aware initramfs image.
401
402On a Red Hat Enterprise Linux or Fedora system, this means, you have to install
403the _dracut-network_ rpm package:
404
405
406----
407# yum install dracut-network
408----
409
410The resulting initramfs image can be served by a boot manager residing on your
411local hard drive or it can be served by a PXE/TFTP server.
412
413How to setup your PXE/TFTP server can be found in the
414http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/6/html/Storage_Administration_Guide/[Red
415Hat Enterprise Linux Storage Administration Guide].
416
0ae480dc 417If you specify ip=auto on the kernel command line, then dracut asks a dhcp
888d53f2
HH
418server about the ip adress for the machine. The dhcp server can also serve an
419additional root-path, which will set the root device for dracut. With this
420mechanism, you have static configuration on your client machine and a
421centralized boot configuration on your TFTP/DHCP server. If you can't pass a
3cff5fb5 422kernel command line, then you can inject _/etc/cmdline.d/mycmdline.conf_, with a method described
888d53f2
HH
423in <<Injecting>>.
424
425
426
427
428=== Reducing the Image Size
429
430To reduce the size of the initramfs, you should create it with by ommitting all
431dracut modules, which you know, you don't need to boot the machine.
432
433You can also specify the exact dracut and kernel modules to produce a very tiny
434initramfs image.
435
436For example for a NFS image, you would do:
437
438
439----
440# dracut -m "nfs network base" initramfs-nfs-only.img
441----
442
443Then you would boot from this image with your target machine and reduce the size
444once more by creating it on the target machine with the --host-only option:
445
446
447----
448# dracut -m "nfs network base" --host-only initramfs-nfs-host-only.img
449----
450
451This will reduce the size of the initramfs image significantly.
452
453
454
455=== NFS Root Device
456
457FIXME
458
459=== iSCSI Root Device
460
461FIXME
462
463=== FCoE Root Device
464
465FIXME
466
467== Troubleshooting
468
469If the boot process does not succeed, you have several options to debug the
470situation. Some of the basic operations are covered here. For more information
471you should also visit:
472http://fedoraproject.org/wiki/How_to_debug_Dracut_problems
473
474
475[[identifying-your-problem-area]]
476=== Identifying your problem area
477. Remove ''rhgb'' and ''quiet'' from the kernel command line
478. Add ''rd.shell'' to the kernel command line. This will present a shell should
479dracut be unable to locate your root device
480. Add ''rd.shell rd.debug log_buf_len=1M'' to the kernel command line so that
481dracut shell commands are printed as they are executed
482. With dracut >= 002-11, you can inspect the rd.debug output with:
483+
484----
485# less /run/initramfs/init.log
486# dmesg | less
487----
a844fb15
HH
488. With dracut >= 022 and systemd, you can inspect the rd.debug output with:
489----
490# journalctl -ab
491----
c33488fe 492. With dracut >= 025 the file /run/initramfs/rdsosreport.txt is generated, which contains all the logs and the output of all significant tools, which are mentioned later.
a844fb15
HH
493
494If you want to save that output, simply mount /boot by hand or insert an USB stick and mount that.
495Then you can store the output for later inspection.
888d53f2
HH
496
497[[information-to-include-in-your-report]]
498=== Information to include in your report
499
500[[all-bug-reports]]
501==== All bug reports
502In all cases, the following should be mentioned and attached to your bug report:
503
504* The exact kernel command-line used. Typically from the bootloader
505configuration file (e.g. _/etc/grub.conf_) or from _/proc/cmdline_.
506* A copy of your disk partition information from _/etc/fstab_, which might be
507obtained booting an old working initramfs or a rescue medium.
508* A device listing from device-mapper. This can be obtained by running the
a844fb15 509command
888d53f2
HH
510+
511----
512# dmsetup ls --tree
513----
514+
cce69be6 515* A list of block device attributes. This can be obtained by running the commands:
888d53f2
HH
516+
517----
518# blkid -p
519# blkid -p -o udev
520----
521* Turn on dracut debugging (see _the 'debugging dracut' section_), and attach
522all relevant information from the boot log. This can be obtained by running the
523command
524+
525----
526# dmesg|grep dracut
527----
528+
529* If you use a dracut configuration file, please include _/etc/dracut.conf_ and
530all files in _/etc/dracut.conf.d/*.conf_
531
532[[logical-volume-management-related-problems]]
533==== Logical Volume Management related problems
534As well as the information from <<all-bug-reports>> include the following
535information:
536
a1ebd771 537* Include physical volume information by running the command:
888d53f2
HH
538+
539----
540# lvm pvdisplay
541----
542+
a1ebd771 543* Include volume group information by running the command:
888d53f2
HH
544+
545----
546# lvm vgdisplay
547----
548+
a1ebd771 549* Include logical volume information by running the command:
888d53f2
HH
550+
551----
552# lvm lvdisplay
553----
554
555[[software-raid-related-problems]]
556==== Software RAID related problems
557As well as the information from <<all-bug-reports>>, include the following
558information:
559
a1ebd771 560* If using software RAID disk partitions, please include the output of
888d53f2
HH
561+
562----
563# cat /proc/mdstat
564----
565
566[[network-root-device-related-problems]]
567==== Network root device related problems
568This section details information to include when experiencing problems on a
569system whose root device is located on a network attached volume (e.g. iSCSI,
570NFS or NBD). As well as the information from <<all-bug-reports>>, include the
571following information:
572
573
574* Please include the output of
575+
576----
577# /sbin/ifup <interfacename>
578# ip addr show
579----
580
581[[debugging-dracut]]
582=== Debugging dracut
583
584
585[[configure-a-serial-console]]
586==== Configure a serial console
587
588Successfully debugging dracut will require some form of console
589logging during the system boot. This section documents configuring a
590serial console connection to record boot messages.
591
592. First, enable serial console output for both the kernel and the bootloader.
593. Open the file _/etc/grub.conf_ for editing. Below the line ''timeout=5'', add
594the following:
595+
596----
597serial --unit=0 --speed=9600
598terminal --timeout=5 serial console
599----
600+
601. Also in _/etc/grub.conf_, add the following boot arguemnts to the ''kernel''
602line:
603+
604----
605console=tty0 console=ttyS0,9600
606----
607+
608. When finished, the _/etc/grub.conf_ file should look similar to the example
609below.
610+
611----
612default=0
613timeout=5
614serial --unit=0 --speed=9600
615terminal --timeout=5 serial console
616title Fedora (2.6.29.5-191.fc11.x86_64)
617 root (hd0,0)
618 kernel /vmlinuz-2.6.29.5-191.fc11.x86_64 ro root=/dev/mapper/vg_uc1-lv_root console=tty0 console=ttyS0,9600
619 initrd /dracut-2.6.29.5-191.fc11.x86_64.img
620----
621+
622. More detailed information on how to configure the kernel for console output
623can be found at
624http://www.faqs.org/docs/Linux-HOWTO/Remote-Serial-Console-HOWTO.html#CONFIGURE-KERNEL.
625. Redirecting non-interactive output
626+
627--
628NOTE: You can redirect all non-interactive output to _/dev/kmsg_ and the kernel
629will put it out on the console when it reaches the kernel buffer by doing
630
631----
632# exec >/dev/kmsg 2>&1 </dev/console
633----
634--
635
636[[using-the-dracut-shell]]
637==== Using the dracut shell
638
600c8769 639dracut offers a shell for interactive debugging in the event dracut fails to
888d53f2
HH
640locate your root filesystem. To enable the shell:
641
642. Add the boot parameter ''rd.shell'' to your bootloader configuration file
643(e.g. _/etc/grub.conf_)
644. Remove the boot arguments ''rhgb'' and ''quiet''
645+
646A sample _/etc/grub.conf_ bootloader configuration file is listed below.
647+
648----
649default=0
650timeout=5
651serial --unit=0 --speed=9600
652terminal --timeout=5 serial console
653title Fedora (2.6.29.5-191.fc11.x86_64)
654 root (hd0,0)
655 kernel /vmlinuz-2.6.29.5-191.fc11.x86_64 ro root=/dev/mapper/vg_uc1-lv_root console=tty0 rd.shell
656 initrd /dracut-2.6.29.5-191.fc11.x86_64.img
657----
658+
659. If system boot fails, you will be dropped into a shell as seen in the example below.
660+
661----
662No root device found
663Dropping to debug shell.
664
a1ebd771 665#
888d53f2
HH
666----
667+
668. Use this shell prompt to gather the information requested above (see <<all-bug-reports>>).
669
670[[accessing-the-root-volume-from-the-dracut-shell]]
671==== Accessing the root volume from the dracut shell
672From the dracut debug shell, you can manually perform the task of locating and
673preparing your root volume for boot. The required steps will depend on how your
674root volume is configured. Common scenarios include:
675
676* A block device (e.g. _/dev/sda7_)
677* A LVM logical volume (e.g. _/dev/VolGroup00/LogVol00_)
678* An encrypted device (e.g. _/dev/mapper/luks-4d5972ea-901c-4584-bd75-1da802417d83_)
679* A network attached device (e.g. netroot=iscsi:@192.168.0.4::3260::iqn.2009-02.org.fedoraproject:for.all)
680
681The exact method for locating and preparing will vary. However, to continue with
682a successful boot, the objective is to locate your root volume and create a
683symlink _/dev/root_ which points to the file system. For example, the following
684example demonstrates accessing and booting a root volume that is an encrypted
a1ebd771 685LVM Logical volume.
888d53f2
HH
686
687. Inspect your partitions using parted
688+
689----
690# parted /dev/sda -s p
691Model: ATA HTS541060G9AT00 (scsi)
692Disk /dev/sda: 60.0GB
693Sector size (logical/physical): 512B/512B
694Partition Table: msdos
695Number Start End Size Type File system Flags
6961 32.3kB 10.8GB 107MB primary ext4 boot
6972 10.8GB 55.6GB 44.7GB logical lvm
698----
699+
700. You recall that your root volume was a LVM logical volume. Scan and activate
a1ebd771 701any logical volumes.
888d53f2
HH
702+
703----
704# lvm vgscan
705# lvm vgchange -ay
706----
707+
708. You should see any logical volumes now using the command blkid:
709+
710----
711# blkid
712/dev/sda1: UUID="3de247f3-5de4-4a44-afc5-1fe179750cf7" TYPE="ext4"
713/dev/sda2: UUID="Ek4dQw-cOtq-5MJu-OGRF-xz5k-O2l8-wdDj0I" TYPE="LVM2_member"
714/dev/mapper/linux-root: UUID="def0269e-424b-4752-acf3-1077bf96ad2c" TYPE="crypto_LUKS"
715/dev/mapper/linux-home: UUID="c69127c1-f153-4ea2-b58e-4cbfa9257c5e" TYPE="ext3"
716/dev/mapper/linux-swap: UUID="47b4d329-975c-4c08-b218-f9c9bf3635f1" TYPE="swap"
717----
718+
719. From the output above, you recall that your root volume exists on an encrypted
720block device. Following the guidance disk encryption guidance from the
721Installation Guide, you unlock your encrypted root volume.
722+
723----
724# UUID=$(cryptsetup luksUUID /dev/mapper/linux-root)
725# cryptsetup luksOpen /dev/mapper/linux-root luks-$UUID
726Enter passphrase for /dev/mapper/linux-root:
a1ebd771 727Key slot 0 unlocked.
888d53f2
HH
728----
729+
730. Next, make a symbolic link to the unlocked root volume
731+
732----
733# ln -s /dev/mapper/luks-$UUID /dev/root
734----
735+
736. With the root volume available, you may continue booting the system by exiting
737the dracut shell
738+
739----
740# exit
741----
742
743[[additional-dracut-boot-parameters]]
744==== Additional dracut boot parameters
745For more debugging options, see <<dracutkerneldebug>> in <<dracutcmdline7>>.
746
747= Developer Manual
748
749== dracut Components
750
751dracut uses a modular system to build and extend the initramfs image. All
752modules are located in _/usr/lib/dracut/modules.d_ or in _<git-src>/modules.d_.
753The most basic dracut module is _99base_. In _99base_ the initial shell script
754init is defined, which gets run by the kernel after initramfs loading. Although
755you can replace init with your own version of _99base_, this is not encouraged.
756Instead you should use, if possible, the hooks of dracut. All hooks, and the
757point of time in which they are executed, are described in <<stages>>.
758
759The main script, which creates the initramfs is dracut itsself. It parses all
760arguments and sets up the directory, in which everything is installed. It then
761executes all check, install, installkernel scripts found in the modules, which
762are to be processed. After everything is installed, the install directory is
763archived and compressed to the final initramfs image. All helper functions used
764by check, install and installkernel are found in in the file _dracut-functions_.
765These shell functions are available to all module installer (install,
766installkernel) scripts, without the need to source _dracut-functions_.
767
768A module can check the preconditions for install and installkernel with the
769check script. Also dependencies can be expressed with check. If a module passed
770check, install and installkernel will be called to install all of the necessary
771files for the module. To split between kernel and non-kernel parts of the
772installation, all kernel module related parts have to be in installkernel. All
773other files found in a module directory are module specific and mostly are hook
774scripts and udev rules.
775
776
777[[stages]]
778== Boot Process Stages
779
780The init script in _99base_ is the main script, which prepares the root file
781system for usage, runs udev, mounts the real root device, kills the remaining
782processes, and switches to the real root device for further booting. dracut
783modules can insert custom script at various points, to control the boot process.
784These hooks are plain directories containing shell scripts ending with ".sh",
785which are sourced by init.
a1ebd771 786Common used functions are in _dracut-lib.sh_, which can be sourced by any script.
888d53f2
HH
787
788
789
790=== Basic Setup
791
792The first thing init does, is to mount _/proc_ and _/sys_ and manually create
793the basic device nodes and symbolic links in _/dev_ needed to execute basic
794commands. Then logging is setup according to kernel command line arguments.
795_/dev/pts_ and _/dev/shm_ are mounted and the first hook is sourced.
796
797
798
799=== Hook: cmdline
800
801The _cmdline_ hook is a place to insert scripts to parse the kernel command line
802and prepare the later actions, like setting up udev rules and configuration
803files.
804
805In this hook the most important environment variable is defined: root. The
806second one is rootok, which indicates, that a module claimed to be able to parse
807the root defined. So for example, **root=**__iscsi:....__ will be claimed by the
808iscsi dracut module, which then sets rootok.
809
810=== Hook: pre-udev
811
812This hook is executed right after the cmdline hook and a check if root and
813rootok were set. Here modules can take action with the final root, and before
814udev has been run.
815
816
817
818=== Start Udev
819
820Now udev is started and the logging for udev is setup.
821
822
823
824=== Hook: pre-trigger
825
826In this hook, you can set udev environment variables with **udevadm control
827--property=KEY=_value_** or control the further execution of udev with
828udevadm.
829
830
831
832=== Trigger Udev
833
834udev is triggered by calling udevadm trigger, which sends add events for all
a1ebd771 835devices and subsystems.
888d53f2
HH
836
837
838
839=== Main Loop
840
841Now the main loop of 99base/init begins. Here we loop until udev has settled and
842all scripts in _initqueue/finished_ returned true. In this loop there are three
843hooks, where scripts can be inserted by calling /sbin/initqueue.
844
845
846
847==== Initqueue
848
849This hook gets executed every time a script is inserted here, regardless of the
850udev state.
851
852
853
854==== Initqueue settled
855
856This hooks gets executed every time udev has settled.
857
858
859
860==== Initqueue timeout
861
862This hooks gets executed, when the main loop counter becomes half of the
863rd.retry counter.
864
865
866
867==== Initqueue finished
868
869This hook is called after udev has settled and if all scripts herein return 0
870the main loop will be ended.
871
872
873
874=== Hook: pre-mount
875
876Before the root device is mounted all scripts in the hook pre-mount are
877executed. In some cases (e.g. NFS) the real root device is already mounted,
878though.
879
880
881
882=== Hook: mount
883
884This hook is mainly to mount the real root device.
885
886
887
888=== Hook: pre-pivot
889
eef7649e 890This hook is called before cleanup hook, This is a good place for
2e7257a2
DY
891actions other than cleanups which need to be called before pivot.
892
893
eef7649e 894=== Hook: cleanup
2e7257a2 895
888d53f2
HH
896This hook is the last hook and is called before init finally switches root to
897the real root device. This is a good place to clean up and kill processes not
898needed anymore.
899
900
888d53f2
HH
901=== Cleanup and switch_root
902
903Init kills all udev processes, cleans up the environment, sets up the arguments
904for the real init process and finally calls switch_root. switch_root removes the
905whole filesystem hierarchy of the initramfs, chroot()s to the real root device
906and calls /sbin/init with the specified arguments.
907
908To ensure all files in the initramfs hierarchy can be removed, all processes
909still running from the initramfs should not have any open file descriptors left.
910
911
912
913== Network Infrastructure
914
888d53f2
HH
915FIXME
916
917
918== Writing a Module
919
920A simple example module is _96insmodpost_, which modprobes a kernel module after
921udev has settled and the basic device drivers have been loaded.
922
923All module installation information is in the file module-setup.sh.
924
925First we create a check() function, which just exits with 0 indicating that this
926module should be included by default.
927
928check():
929
930
931----
932return 0
933----
934
935The we create the install() function, which installs a cmdline hook with
936priority number 20 called _parse-insmodpost.sh_. It also installs the
937_insmodpost.sh_ script in _/sbin_.
938
939install():
940
941
942----
943inst_hook cmdline 20 "$moddir/parse-insmodpost.sh"
944inst_simple "$moddir/insmodpost.sh" /sbin/insmodpost.sh
945----
946
947The _pase-instmodpost.sh_ parses the kernel command line for a argument
948rd.driver.post, blacklists the module from being autoloaded and installs the
949hook _insmodpost.sh_ in the _initqueue/settled_.
950
951_parse-insmodpost.sh_:
952
953
954----
955for p in $(getargs rd.driver.post=); do
956 echo "blacklist $p" >> /etc/modprobe.d/initramfsblacklist.conf
957 _do_insmodpost=1
958done
959
960[ -n "$_do_insmodpost" ] && /sbin/initqueue --settled --unique --onetime /sbin/insmodpost.sh
961unset _do_insmodpost
962
963----
964
965_insmodpost.sh_, which is called in the _initqueue/settled_ hook will just
966modprobe the kernel modules specified in all rd.driver.post kernel command line
967parameters. It runs after udev has settled and is only called once (--onetime).
968
969_insmodpost.sh_:
970
971
972----
973. /lib/dracut-lib.sh
974
975for p in $(getargs rd.driver.post=); do
976 modprobe $p
977done
978
979----
980
981
982
983=== check()
984
985_check()_ is called by dracut to evaluate the inclusion of a dracut module in
986the initramfs.
987
988$hostonly:: If the $hostonly variable is set, then the module check() function
989should be in "hostonly" mode, which means, that the check() should only return
9900, if the module is really needed to boot this specific host.
991
992check() should return with:
993
9940:: Include the dracut module in the initramfs.
995
9961:: Do not include the dracut module. The requirements are not fullfilled
997(missing tools, etc.)
998
999255:: Only include the dracut module, if another module requires it or if
1000explicitly specified in the config file or on the argument list.
1001
1002
1003
1004=== depends()
1005
1006The function depends() should echo all other dracut module names the module
1007depends on.
1008
1009
1010
1011=== install()
1012
1013dracut_install
1014
1015inst
1016
1017inst_hook
1018
1019inst_rules
1020
1021
1022
1023
1024
1025=== installkernel()
1026
1027instmods
1028
1029
1030
1031=== Creation Functions
1032
888d53f2
HH
1033FIXME
1034
1035
1036=== Initramfs Functions
1037
888d53f2
HH
1038FIXME
1039
1040
1041=== Network Modules
1042
1043FIXME
1044
a1ebd771
HH
1045:leveloffset: 1
1046[[dracutbootup7]]
1047include::dracut.bootup.7.asc[]
3d3f32ae
HH
1048
1049:leveloffset: 1
888d53f2
HH
1050[[dracut8]]
1051include::dracut.8.asc[]
1052
1053[[dracutconf5]]
1054include::dracut.conf.5.asc[]
1055
1056[[dracutcmdline7]]
1057include::dracut.cmdline.7.asc[]
1058
e5efb6a7
HH
1059[[lsinitrd1]]
1060include::lsinitrd.1.asc[]
1061
1062[[mkinitrd8]]
1063include::mkinitrd.8.asc[]
1064
3d3f32ae 1065:leveloffset: 0
888d53f2
HH
1066[appendix]
1067License
1068-------
1069This work is licensed under the Creative Commons Attribution/Share-Alike
1070License. To view a copy of this license, visit
1071http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to Creative
1072Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA.
1073