]> git.ipfire.org Git - thirdparty/dracut.git/blob - dracut.usage.asc
6d37920f7bff69784e81d4790eef4c1a44fd91eb
[thirdparty/dracut.git] / dracut.usage.asc
1 To create a initramfs image, the most simple command is:
2 ----
3 # dracut
4 ----
5
6 This will generate a general purpose initramfs image, with all possible
7 functionality resulting of the combination of the installed dracut modules and
8 system tools. The image is /boot/initramfs-_++<kernel version>++_.img and
9 contains the kernel modules of the currently active kernel with version
10 _++<kernel version>++_.
11
12 If the initramfs image already exists, dracut will display an error message, and
13 to overwrite the existing image, you have to use the --force option.
14 ----
15 # dracut --force
16 ----
17
18 If you want to specify another filename for the resulting image you would issue
19 a command like:
20 ----
21 # dracut foobar.img
22 ----
23
24 To generate an image for a specific kernel version, the command would be:
25 ----
26 # dracut foobar.img 2.6.40-1.rc5.f20
27 ----
28
29 A shortcut to generate the image at the default location for a specific kernel
30 version is:
31 ----
32 # dracut --kver 2.6.40-1.rc5.f20
33 ----
34
35 If you want to create lighter, smaller initramfs images, you may want to specify
36 the --hostonly or -H option. Using this option, the resulting image will
37 contain only those dracut modules, kernel modules and filesystems, which are
38 needed to boot this specific machine. This has the drawback, that you can't put
39 the disk on another controller or machine, and that you can't switch to another
40 root filesystem, without recreating the initramfs image. The usage of the
41 --hostonly option is only for experts and you will have to keep the broken
42 pieces. At least keep a copy of a general purpose image (and corresponding
43 kernel) as a fallback to rescue your system.
44
45 === Inspecting the Contents
46 To see the contents of the image created by dracut, you can use the lsinitrd tool.
47 ----
48 # lsinitrd | less
49 ----
50
51 To display the contents of a file in the initramfs also use the lsinitrd tool:
52 ----
53 # lsinitrd -f /etc/ld.so.conf
54 include ld.so.conf.d/*.conf
55 ----
56
57 === Adding dracut Modules
58 Some dracut modules are turned off by default and have to be activated manually.
59 You can do this by adding the dracut modules to the configuration file
60 _/etc/dracut.conf_ or _/etc/dracut.conf.d/myconf.conf_. See *dracut.conf*(5).
61 You can also add dracut modules on the command line
62 by using the -a or --add option:
63 ----
64 # dracut --add bootchart initramfs-bootchart.img
65 ----
66
67 To see a list of available dracut modules, use the --list-modules option:
68 ----
69 # dracut --list-modules
70 ----
71
72 === Omitting dracut Modules
73 Sometimes you don't want a dracut module to be included for reasons of speed,
74 size or functionality. To do this, either specify the omit_dracutmodules
75 variable in the _dracut.conf_ or _/etc/dracut.conf.d/myconf.conf_ configuration
76 file (see *dracut.conf*(5)), or use the -o or --omit option
77 on the command line:
78 ----
79 # dracut -o "multipath lvm" no-multipath-lvm.img
80 ----
81
82 === Adding Kernel Modules
83 If you need a special kernel module in the initramfs, which is not
84 automatically picked up by dracut, you have the use the --add-drivers option
85 on the command line or the drivers vaiable in the _/etc/dracut.conf_
86 or _/etc/dracut.conf.d/myconf.conf_ configuration file (see *dracut.conf*(5)):
87 ----
88 # dracut --add-drivers mymod initramfs-with-mymod.img
89 ----
90
91 === Boot parameters
92 An initramfs generated without the "hostonly" mode, does not contain any system
93 configuration files (except for some special exceptions), so the configuration
94 has to be done on the kernel command line. With this flexibility, you can easily
95 boot from a changed root partition, without the need to recompile the initramfs
96 image. So, you could completly change your root partition (move it inside a md
97 raid with encryption and LVM on top), as long as you specify the correct
98 filesystem LABEL or UUID on the kernel command line for your root device, dracut
99 will find it and boot from it.
100
101 The kernel command line usually can be configured in _/boot/grub/grub.conf_, if
102 grub is your bootloader and it also can be edited in the real boot process in
103 the grub menu.
104
105 The kernel command line can also be provided by the dhcp server with the
106 root-path option. See <<NetworkBoot>>.
107
108 For a full reference of all kernel command line parameters, see *dracut.cmdline*(5).
109
110 To get a quick start for the suitable kernel command line on your system, use the
111 __--print-cmdline__ option:
112 ----
113 # dracut --print-cmdline
114 root=UUID=8b8b6f91-95c7-4da2-831b-171e12179081 rootflags=rw,relatime,discard,data=ordered rootfstype=ext4
115 ----
116
117 ==== Specifying the root Device
118 This is the only option dracut really needs to boot from your root partition.
119 Because your root partition can live in various environments, there are a lot of
120 formats for the root= option. The most basic one is root=_++<path to device
121 node>++_:
122 ----
123 root=/dev/sda2
124 ----
125
126 Because device node names can change, dependent on the drive ordering, you are
127 encouraged to use the filesystem identifier (UUID) or filesystem label (LABEL)
128 to specify your root partition:
129 ----
130 root=UUID=19e9dda3-5a38-484d-a9b0-fa6b067d0331
131 ----
132
133 or
134
135 ----
136 root=LABEL=myrootpartitionlabel
137 ----
138
139 To see all UUIDs or LABELs on your system, do:
140 ----
141 # ls -l /dev/disk/by-uuid
142 ----
143
144 or
145
146 ----
147 # ls -l /dev/disk/by-label
148 ----
149
150 If your root partition is on the network see <<NetworkBoot>>.
151
152 ==== Keyboard Settings
153 If you have to input passwords for encrypted disk volumes, you might want to set
154 the keyboard layout and specify a display font.
155
156 A typical german kernel command would contain:
157 ----
158 rd.vconsole.font=latarcyrheb-sun16 rd.vconsole.keymap=de-latin1-nodeadkeys rd.locale.LANG=de_DE.UTF-8
159 ----
160
161 Setting these options can override the setting stored on your system, if you use
162 a modern init system, like systemd.
163
164 ==== Blacklisting Kernel Modules
165 Sometimes it is required to prevent the automatic kernel module loading of a
166 specific kernel module. To do this, just add rd.blacklist=_++<kernel module
167 name>++_, with _++<kernel module name>++_ not containing the _.ko_
168 suffix, to the kernel command line. For example:
169 ----
170 rd.driver.blacklist=mptsas rd.driver.blacklist=nouveau
171 ----
172
173 The option can be specified multiple times on the kernel command line.
174
175 ==== Speeding up the Boot Process
176 If you want to speed up the boot process, you can specify as much information
177 for dracut on the kernel command as possible. For example, you can tell dracut,
178 that you root partition is not on a LVM volume or not on a raid partition, or
179 that it lives inside a specific crypto LUKS encrypted volume. By default, dracut
180 searches everywhere. A typical dracut kernel command line for a plain primary or
181 logical partition would contain:
182 ----
183 rd.luks=0 rd.lvm=0 rd.md=0 rd.dm=0
184 ----
185
186 This turns off every automatic assembly of LVM, MD raids, DM raids and crypto LUKS.
187
188 Of course, you could also omit the dracut modules in the initramfs creation
189 process, but then you would lose the posibility to turn it on on demand.
190
191
192 [[Injecting]]
193 === Injecting custom Files
194 To add your own files to the initramfs image, you have several possibilities.
195
196 The --include option let you specify a source path and a target path. For example
197 ----
198 # dracut --include cmdline-preset /etc/cmdline.d/mycmdline.conf initramfs-cmdline-pre.img
199 ----
200 will create an initramfs image, where the file cmdline-preset will be copied
201 inside the initramfs to _/etc/cmdline.d/mycmdline.conf_. --include can only be specified once.
202
203
204 ----
205 # mkdir -p rd.live.overlay/etc/cmdline.d
206 # mkdir -p rd.live.overlay/etc/conf.d
207 # echo "ip=auto" >> rd.live.overlay/etc/cmdline.d/mycmdline.conf
208 # echo export FOO=testtest >> rd.live.overlay/etc/conf.d/testvar.conf
209 # echo export BAR=testtest >> rd.live.overlay/etc/conf.d/testvar.conf
210 # tree rd.live.overlay/
211 rd.live.overlay/
212 `-- etc
213 |-- cmdline.d
214 | `-- mycmdline.conf
215 `-- conf.d
216 `-- testvar.conf
217
218 # dracut --include rd.live.overlay / initramfs-rd.live.overlay.img
219 ----
220
221 This will put the contents of the rd.live.overlay directory into the root of the
222 initramfs image.
223
224 The --install option let you specify several files, which will get installed in
225 the initramfs image at the same location, as they are present on initramfs
226 creation time.
227
228
229 ----
230 # dracut --install 'strace fsck.ext3 ssh' initramfs-dbg.img
231 ----
232
233 This will create an initramfs with the strace, fsck.ext3 and ssh executables,
234 together with the libraries needed to start those. The --install option can be
235 specified multiple times.
236
237
238 [[NetworkBoot]]
239 === Network Boot
240
241 If your root partition is on a network drive, you have to have the network
242 dracut modules installed to create a network aware initramfs image.
243
244 On a Red Hat Enterprise Linux or Fedora system, this means, you have to install
245 the _dracut-network_ rpm package:
246
247
248 ----
249 # yum install dracut-network
250 ----
251
252 The resulting initramfs image can be served by a boot manager residing on your
253 local hard drive or it can be served by a PXE/TFTP server.
254
255 How to setup your PXE/TFTP server can be found in the
256 http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/6/html/Storage_Administration_Guide/[Red
257 Hat Enterprise Linux Storage Administration Guide].
258
259 If you specify ip=auto on the kernel command line, then dracut asks a dhcp
260 server about the ip adress for the machine. The dhcp server can also serve an
261 additional root-path, which will set the root device for dracut. With this
262 mechanism, you have static configuration on your client machine and a
263 centralized boot configuration on your TFTP/DHCP server. If you can't pass a
264 kernel command line, then you can inject _/etc/cmdline.d/mycmdline.conf_, with a method described
265 in <<Injecting>>.
266
267 ==== Reducing the Image Size
268
269 To reduce the size of the initramfs, you should create it with by ommitting all
270 dracut modules, which you know, you don't need to boot the machine.
271
272 You can also specify the exact dracut and kernel modules to produce a very tiny
273 initramfs image.
274
275 For example for a NFS image, you would do:
276
277
278 ----
279 # dracut -m "nfs network base" initramfs-nfs-only.img
280 ----
281
282 Then you would boot from this image with your target machine and reduce the size
283 once more by creating it on the target machine with the --host-only option:
284
285
286 ----
287 # dracut -m "nfs network base" --host-only initramfs-nfs-host-only.img
288 ----
289
290 This will reduce the size of the initramfs image significantly.
291
292
293 == Troubleshooting
294
295 If the boot process does not succeed, you have several options to debug the
296 situation. Some of the basic operations are covered here. For more information
297 you should also visit:
298 http://fedoraproject.org/wiki/How_to_debug_Dracut_problems
299
300
301 [[identifying-your-problem-area]]
302 === Identifying your problem area
303 . Remove ''rhgb'' and ''quiet'' from the kernel command line
304 . Add ''rd.shell'' to the kernel command line. This will present a shell should
305 dracut be unable to locate your root device
306 . Add ''rd.shell rd.debug log_buf_len=1M'' to the kernel command line so that
307 dracut shell commands are printed as they are executed
308 . The file /run/initramfs/rdsosreport.txt is generated,
309 which contains all the logs and the output of all significant tools, which are mentioned later.
310
311 If you want to save that output, simply mount /boot by hand or insert an USB stick and mount that.
312 Then you can store the output for later inspection.
313
314 [[information-to-include-in-your-report]]
315 === Information to include in your report
316
317 [[all-bug-reports]]
318 ==== All bug reports
319 In all cases, the following should be mentioned and attached to your bug report:
320
321 * The exact kernel command-line used. Typically from the bootloader
322 configuration file (e.g. _/etc/grub.conf_) or from _/proc/cmdline_.
323 * A copy of your disk partition information from _/etc/fstab_, which might be
324 obtained booting an old working initramfs or a rescue medium.
325 * Turn on dracut debugging (see _the 'debugging dracut' section_), and attach
326 the file /run/initramfs/rdsosreport.txt.
327 * If you use a dracut configuration file, please include _/etc/dracut.conf_ and
328 all files in _/etc/dracut.conf.d/*.conf_
329
330 [[network-root-device-related-problems]]
331 ==== Network root device related problems
332 This section details information to include when experiencing problems on a
333 system whose root device is located on a network attached volume (e.g. iSCSI,
334 NFS or NBD). As well as the information from <<all-bug-reports>>, include the
335 following information:
336
337
338 * Please include the output of
339 +
340 ----
341 # /sbin/ifup <interfacename>
342 # ip addr show
343 ----
344
345 [[debugging-dracut]]
346 === Debugging dracut
347
348
349 [[configure-a-serial-console]]
350 ==== Configure a serial console
351
352 Successfully debugging dracut will require some form of console
353 logging during the system boot. This section documents configuring a
354 serial console connection to record boot messages.
355
356 . First, enable serial console output for both the kernel and the bootloader.
357 . Open the file _/etc/grub.conf_ for editing. Below the line ''timeout=5'', add
358 the following:
359 +
360 ----
361 serial --unit=0 --speed=9600
362 terminal --timeout=5 serial console
363 ----
364 +
365 . Also in _/etc/grub.conf_, add the following boot arguemnts to the ''kernel''
366 line:
367 +
368 ----
369 console=tty0 console=ttyS0,9600
370 ----
371 +
372 . When finished, the _/etc/grub.conf_ file should look similar to the example
373 below.
374 +
375 ----
376 default=0
377 timeout=5
378 serial --unit=0 --speed=9600
379 terminal --timeout=5 serial console
380 title Fedora (2.6.29.5-191.fc11.x86_64)
381 root (hd0,0)
382 kernel /vmlinuz-2.6.29.5-191.fc11.x86_64 ro root=/dev/mapper/vg_uc1-lv_root console=tty0 console=ttyS0,9600
383 initrd /dracut-2.6.29.5-191.fc11.x86_64.img
384 ----
385 +
386 . More detailed information on how to configure the kernel for console output
387 can be found at
388 http://www.faqs.org/docs/Linux-HOWTO/Remote-Serial-Console-HOWTO.html#CONFIGURE-KERNEL.
389 . Redirecting non-interactive output
390 +
391 --
392 NOTE: You can redirect all non-interactive output to _/dev/kmsg_ and the kernel
393 will put it out on the console when it reaches the kernel buffer by doing
394
395 ----
396 # exec >/dev/kmsg 2>&1 </dev/console
397 ----
398 --
399
400 [[using-the-dracut-shell]]
401 ==== Using the dracut shell
402
403 dracut offers a shell for interactive debugging in the event dracut fails to
404 locate your root filesystem. To enable the shell:
405
406 . Add the boot parameter ''rd.shell'' to your bootloader configuration file
407 (e.g. _/etc/grub.conf_)
408 . Remove the boot arguments ''rhgb'' and ''quiet''
409 +
410 A sample _/etc/grub.conf_ bootloader configuration file is listed below.
411 +
412 ----
413 default=0
414 timeout=5
415 serial --unit=0 --speed=9600
416 terminal --timeout=5 serial console
417 title Fedora (2.6.29.5-191.fc11.x86_64)
418 root (hd0,0)
419 kernel /vmlinuz-2.6.29.5-191.fc11.x86_64 ro root=/dev/mapper/vg_uc1-lv_root console=tty0 rd.shell
420 initrd /dracut-2.6.29.5-191.fc11.x86_64.img
421 ----
422 +
423 . If system boot fails, you will be dropped into a shell as seen in the example below.
424 +
425 ----
426 No root device found
427 Dropping to debug shell.
428
429 #
430 ----
431 +
432 . Use this shell prompt to gather the information requested above (see <<all-bug-reports>>).
433
434 [[accessing-the-root-volume-from-the-dracut-shell]]
435 ==== Accessing the root volume from the dracut shell
436 From the dracut debug shell, you can manually perform the task of locating and
437 preparing your root volume for boot. The required steps will depend on how your
438 root volume is configured. Common scenarios include:
439
440 * A block device (e.g. _/dev/sda7_)
441 * A LVM logical volume (e.g. _/dev/VolGroup00/LogVol00_)
442 * An encrypted device (e.g. _/dev/mapper/luks-4d5972ea-901c-4584-bd75-1da802417d83_)
443 * A network attached device (e.g. netroot=iscsi:@192.168.0.4::3260::iqn.2009-02.org.fedoraproject:for.all)
444
445 The exact method for locating and preparing will vary. However, to continue with
446 a successful boot, the objective is to locate your root volume and create a
447 symlink _/dev/root_ which points to the file system. For example, the following
448 example demonstrates accessing and booting a root volume that is an encrypted
449 LVM Logical volume.
450
451 . Inspect your partitions using parted
452 +
453 ----
454 # parted /dev/sda -s p
455 Model: ATA HTS541060G9AT00 (scsi)
456 Disk /dev/sda: 60.0GB
457 Sector size (logical/physical): 512B/512B
458 Partition Table: msdos
459 Number Start End Size Type File system Flags
460 1 32.3kB 10.8GB 107MB primary ext4 boot
461 2 10.8GB 55.6GB 44.7GB logical lvm
462 ----
463 +
464 . You recall that your root volume was a LVM logical volume. Scan and activate
465 any logical volumes.
466 +
467 ----
468 # lvm vgscan
469 # lvm vgchange -ay
470 ----
471 +
472 . You should see any logical volumes now using the command blkid:
473 +
474 ----
475 # blkid
476 /dev/sda1: UUID="3de247f3-5de4-4a44-afc5-1fe179750cf7" TYPE="ext4"
477 /dev/sda2: UUID="Ek4dQw-cOtq-5MJu-OGRF-xz5k-O2l8-wdDj0I" TYPE="LVM2_member"
478 /dev/mapper/linux-root: UUID="def0269e-424b-4752-acf3-1077bf96ad2c" TYPE="crypto_LUKS"
479 /dev/mapper/linux-home: UUID="c69127c1-f153-4ea2-b58e-4cbfa9257c5e" TYPE="ext3"
480 /dev/mapper/linux-swap: UUID="47b4d329-975c-4c08-b218-f9c9bf3635f1" TYPE="swap"
481 ----
482 +
483 . From the output above, you recall that your root volume exists on an encrypted
484 block device. Following the guidance disk encryption guidance from the
485 Installation Guide, you unlock your encrypted root volume.
486 +
487 ----
488 # UUID=$(cryptsetup luksUUID /dev/mapper/linux-root)
489 # cryptsetup luksOpen /dev/mapper/linux-root luks-$UUID
490 Enter passphrase for /dev/mapper/linux-root:
491 Key slot 0 unlocked.
492 ----
493 +
494 . Next, make a symbolic link to the unlocked root volume
495 +
496 ----
497 # ln -s /dev/mapper/luks-$UUID /dev/root
498 ----
499 +
500 . With the root volume available, you may continue booting the system by exiting
501 the dracut shell
502 +
503 ----
504 # exit
505 ----
506
507 [[additional-dracut-boot-parameters]]
508 ==== Additional dracut boot parameters
509 For more debugging options, see *dracut.cmdline*(7).
510
511
512 [[debugging-dracut-on-shutdown]]
513 ==== Debugging dracut on shutdown
514
515 To debug the shutdown sequence on systemd systems, you can _rd.break_
516 on _pre-shutdown_ or _shutdown_.
517
518 To do this from an already booted system:
519 ----
520 # mkdir -p /run/initramfs/etc/cmdline.d
521 # echo "rd.break=pre-shutdown" > /run/initramfs/etc/cmdline.d/debug.conf
522 # touch /run/initramfs/.need_shutdown
523 ----
524
525 This will give you a dracut shell after the system pivot'ed back in the initramfs.
526