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