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