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