test/TEST-50-MULTINIC/client-init.sh: skip MAC marker files
[dracut.git] / dracut.8.asc
blob14ce26b6fd282fd58c9f56d1d4a3e46452df1646
1 DRACUT(8)
2 =========
3 :doctype: manpage
4 :man source:   dracut
5 :man manual:   dracut
7 NAME
8 ----
9 dracut - low-level tool for generating an initramfs image
11 SYNOPSIS
12 --------
13 *dracut* [__OPTION...__] [__<image>__ [__<kernel version>__]]
15 DESCRIPTION
16 -----------
18 Create an initramfs <image> for the kernel with the version <kernel version>.
19 If <kernel version> is omitted, then the version of the actual running
20 kernel is used. If <image> is omitted or empty, then the default location
21 /boot/initramfs-<kernel version>.img is used.
23 dracut creates an initial image used by the kernel for preloading the block
24 device modules (such as IDE, SCSI or RAID) which are needed to access the root
25 filesystem, mounting the root filesystem and booting into the real system.
27 At boot time, the kernel unpacks that archive into RAM disk, mounts and uses it
28 as initial root file system. All finding of the root device happens in this
29 early userspace.
31 For a complete list of kernel command line options see *dracut.cmdline*(7).
33 If you are dropped to an emergency shell, while booting your initramfs,
34 the file _/run/initramfs/rdsosreport.txt_ is created, which can be safed to a
35 (to be mounted by hand) partition (usually /boot) or a USB stick.
36 Additional debugging info can be produced by adding **rd.debug** to the kernel
37 command line. _/run/initramfs/rdsosreport.txt_ contains all logs and the output
38 of some tools. It should be attached to any report about dracut problems.
40 USAGE
41 -----
43 include::dracut.usage.asc[]
45 OPTIONS
46 -------
47 **--kver** _<kernel version>_::
48     set the kernel version. This enables to specify the kernel version, without
49     specifying the location of the initramfs image. For example:
50 ----
51 # dracut --kver 3.5.0-0.rc7.git1.2.fc18.x86_64
52 ----
54 **-f, --force**::
55     overwrite existing initramfs file.
57 **-m, --modules** _<list of dracut modules>_::
58     specify a space-separated list of dracut modules to call when building the
59     initramfs. Modules are located in _/usr/lib/dracut/modules.d_. This
60     parameter can be specified multiple times.
62 [NOTE]
63 ===============================
64 If [LIST] has multiple arguments, then you have to put these in quotes. For
65 example:
66 ----
67 # dracut --modules "module1 module2"  ...
68 ----
69 ===============================
71 **-o, --omit** _<list of dracut modules>_::
72     omit a space-separated list of dracut modules. This parameter can be
73     specified multiple times.
75 [NOTE]
76 ===============================
77 If [LIST] has multiple arguments, then you have to put these in quotes. For
78 example:
79 ----
80 # dracut --omit "module1 module2"  ...
81 ----
82 ===============================
84 **-a, --add** _<list of dracut modules>_::
85     add a space-separated list of dracut modules to the default set of modules.
86     This parameter can be specified multiple times.
88 [NOTE]
89 ===============================
90 If [LIST] has multiple arguments, then you have to put these in quotes. For
91 example:
92 ----
93 # dracut --add "module1 module2"  ...
94 ----
95 ===============================
97 **--force-add** _<list of dracut modules>_::
98     force to add a space-separated list of dracut modules to the default set of
99     modules, when -H is specified. This parameter can be specified multiple
100     times.
102 [NOTE]
103 ===============================
104 If [LIST] has multiple arguments, then you have to put these in quotes. For
105 example:
106 ----
107 # dracut --force-add "module1 module2"  ...
108 ----
109 ===============================
111 **-d, --drivers** _<list of kernel modules>_::
112     specify a space-separated list of kernel modules to exclusively include
113     in the initramfs. The kernel modules have to be specified without the ".ko"
114     suffix. This parameter can be specified multiple times.
116 [NOTE]
117 ===============================
118 If [LIST] has multiple arguments, then you have to put these in quotes. For
119 example:
120 ----
121 # dracut --drivers "kmodule1 kmodule2"  ...
122 ----
123 ===============================
125 **--add-drivers** _<list of kernel modules>_::
126     specify a space-separated list of kernel modules to add to the initramfs.
127     The kernel modules have to be specified without the ".ko" suffix. This
128     parameter can be specified multiple times.
130 [NOTE]
131 ===============================
132 If [LIST] has multiple arguments, then you have to put these in quotes. For
133 example:
134 ----
135 # dracut --add-drivers "kmodule1 kmodule2"  ...
136 ----
137 ===============================
139 **--omit-drivers** _<list of kernel modules>_::
140     specify a space-separated list of kernel modules not to add to the
141     initramfs.
142     The kernel modules have to be specified without the ".ko" suffix. This
143     parameter can be specified multiple times.
145 [NOTE]
146 ===============================
147 If [LIST] has multiple arguments, then you have to put these in quotes. For
148 example:
149 ----
150 # dracut --omit-drivers "kmodule1 kmodule2"  ...
151 ----
152 ===============================
154 **--filesystems** _<list of filesystems>_::
155     specify a space-separated list of kernel filesystem modules to exclusively
156     include in the generic initramfs. This parameter can be specified multiple
157     times.
159 [NOTE]
160 ===============================
161 If [LIST] has multiple arguments, then you have to put these in quotes. For
162 example:
163 ----
164 # dracut --filesystems "filesystem1 filesystem2"  ...
165 ----
166 ===============================
168 **-k, --kmoddir** _<kernel directory>_::
169     specify the directory, where to look for kernel modules
171 **--fwdir** _<dir>[:<dir>...]++_::
172     specify additional directories, where to look for firmwares. This parameter
173     can be specified multiple times.
175 **--kernel-cmdline <parameters>**::
176     specify default kernel command line parameters
179 **--kernel-only**::
180     only install kernel drivers and firmware files
182 **--no-kernel**::
183     do not install kernel drivers and firmware files
185 **--early-microcode**::
186     Combine early microcode with ramdisk
188 **--no-early-microcode**::
189     Do not combine early microcode with ramdisk
191 **--print-cmdline**::
192     print the kernel command line for the current disk layout
194 **--mdadmconf**::
195     include local _/etc/mdadm.conf_
197 **--nomdadmconf**::
198     do not include local _/etc/mdadm.conf_
200 **--lvmconf**::
201     include local _/etc/lvm/lvm.conf_
203 **--nolvmconf**::
204     do not include local _/etc/lvm/lvm.conf_
206 **--fscks** [LIST]::
207     add a space-separated list of fsck tools, in addition to _dracut.conf_'s
208     specification; the installation is opportunistic (non-existing tools are
209     ignored)
211 [NOTE]
212 ===============================
213 If [LIST] has multiple arguments, then you have to put these in quotes. For
214 example:
215 ----
216 # dracut --fscks "fsck.foo barfsck"  ...
217 ----
218 ===============================
220 **--nofscks**::
221     inhibit installation of any fsck tools
223 **--strip**::
224     strip binaries in the initramfs (default)
226 **--nostrip**::
227     do not strip binaries in the initramfs
229 **--prelink**::
230     prelink binaries in the initramfs (default)
232 **--noprelink**::
233     do not prelink binaries in the initramfs
235 **--hardlink**::
236     hardlink files in the initramfs (default)
238 **--nohardlink**::
239     do not hardlink files in the initramfs
241 **--prefix** _<dir>_::
242     prefix initramfs files with the specified directory
244 **--noprefix**::
245     do not prefix initramfs files (default)
247 **-h, --help**::
248     display help text and exit.
250 **--debug**::
251     output debug information of the build process
253 **-v, --verbose**::
254     increase verbosity level (default is info(4))
256 **-q, --quiet**:: decrease verbosity level (default is info(4))
258 **-c, --conf** _<dracut configuration file>_::
259     specify configuration file to use.
261 Default:
262    _/etc/dracut.conf_
264 **--confdir** _<configuration directory>_::
265     specify configuration directory to use.
267 Default:
268    _/etc/dracut.conf.d_
270 **--tmpdir** _<temporary directory>_::
271     specify temporary directory to use.
273 Default:
274    _/var/tmp_
276 **--sshkey** _<sshkey file>_:: ssh key file used with ssh-client module.
278 **--logfile** _<logfile>_:: logfile to use; overrides any setting from
279     the configuration files.
281 Default:
282     _/var/log/dracut.log_
284 **-l, --local**::
285     activates the local mode. dracut will use modules from the current working
286     directory instead of the system-wide installed modules in
287     _/usr/lib/dracut/modules.d_.
288     This is useful when running dracut from a git checkout.
290 **-H, --hostonly**::
291     Host-Only mode: Install only what is needed for booting the local host
292     instead of a generic host and generate host-specific configuration.
294 [WARNING]
295 ====
296 If chrooted to another root other than the real root device, use "--fstab" and
297 provide a valid _/etc/fstab_.
298 ====
300 **-N, --no-hostonly**::
301     Disable Host-Only mode
303 **--hostonly-cmdline**:
304     Store kernel command line arguments needed in the initramfs
306 **--no-hostonly-cmdline**:
307     Do not store kernel command line arguments needed in the initramfs
309 **--persistent-policy** _<policy>_::
310     Use _<policy>_ to address disks and partitions.
311     _<policy>_ can be any directory name found in /dev/disk.
312     E.g. "by-uuid", "by-label"
314 **--fstab**::
315     Use _/etc/fstab_ instead of _/proc/self/mountinfo_.
317 **--add-fstab** _<filename>_::
318     Add entries of _<filename>_ to the initramfs /etc/fstab.
320 **--mount** "_<device>_ _<mountpoint>_ _<filesystem type>_ [_<filesystem options>_ [_<dump frequency>_ [_<fsck order>_]]]"::
321     Mount _<device>_ on _<mountpoint>_ with _<filesystem type>_ in the
322     initramfs. _<filesystem options>_, _<dump options>_ and _<fsck order>_ can
323     be specified, see fstab manpage for the details.
324     The default _<filesystem options>_ is "defaults".
325     The default _<dump frequency>_ is "0".
326     the default _<fsck order>_ is "2".
328 **--add-device** _<device>_ ::
329     Bring up _<device>_ in initramfs, _<device>_ should be the device name.
330     This can be useful in hostonly mode for resume support when your swap is on
331     LVM or an encrypted partition.
332     [NB --device can be used for compatibility with earlier releases]
334 **-i, --include** _<SOURCE>_ _<TARGET>_::
335     include the files in the SOURCE directory into the
336     TARGET directory in the final initramfs. If SOURCE is a file, it will be
337     installed to TARGET in the final initramfs. This parameter can be specified
338     multiple times.
340 **-I, --install** _<file list>_::
341     install the space separated list of files into the initramfs.
343 [NOTE]
344 ===============================
345 If [LIST] has multiple arguments, then you have to put these in quotes. For
346 example:
347 ----
348 # dracut --install "/bin/foo /sbin/bar"  ...
349 ----
350 ===============================
352 **--gzip**::
353     Compress the generated initramfs using gzip. This will be done by default,
354     unless another compression option or --no-compress is passed. Equivalent to
355     "--compress=gzip -9"
357 **--bzip2**::
358     Compress the generated initramfs using bzip2.
360 [WARNING]
361 ====
362 Make sure your kernel has bzip2 decompression support compiled in, otherwise you
363 will not be able to boot. Equivalent to "--compress=bzip2"
364 ====
366 **--lzma**::
367     Compress the generated initramfs using lzma.
369 [WARNING]
370 ====
371 Make sure your kernel has lzma decompression support compiled in, otherwise you
372 will not be able to boot. Equivalent to "lzma --compress=lzma -9"
373 ====
375 **--xz**::
376     Compress the generated initramfs using xz.
378 [WARNING]
379 ====
380 Make sure your kernel has xz decompression support compiled in, otherwise you
381 will not be able to boot. Equivalent to
382 "lzma --compress=xz --check=crc32 --lzma2=dict=1MiB"
383 ====
385 **--lzo**::
386     Compress the generated initramfs using lzop.
387 [WARNING]
388 ====
389 Make sure your kernel has lzo decompression support compiled in, otherwise you
390 will not be able to boot.
391 ====
393 **--lz4**::
394     Compress the generated initramfs using lz4.
395 [WARNING]
396 ====
397 Make sure your kernel has lz4 decompression support compiled in, otherwise you
398 will not be able to boot.
399 ====
401 **--compress** _<compressor>_::
402     Compress the generated initramfs using the passed compression program. If
403     you pass it just the name of a compression program, it will call that
404     program with known-working arguments. If you pass a quoted string with
405     arguments, it will be called with exactly those arguments. Depending on what
406     you pass, this may result in an initramfs that the kernel cannot decompress.
408 **--no-compress**::
409     Do not compress the generated initramfs. This will override any other
410     compression options.
412 **--list-modules**::
413     List all available dracut modules.
415 **-M, --show-modules**::
416     Print included module's name to standard output during build.
418 **--keep**::
419     Keep the initramfs temporary directory for debugging purposes.
421 **--printsize**::
422     Print out the module install size
424 **--profile**:
425     Output profile information of the build process
427 **--ro-mnt**:
428     Mount / and /usr read-only by default.
430 **-L, --stdlog** _<level>_::
431     [0-6] Specify logging level (to standard error)
432 ----
433           0 - suppress any messages
434           1 - only fatal errors
435           2 - all errors
436           3 - warnings
437           4 - info
438           5 - debug info (here starts lots of output)
439           6 - trace info (and even more)
440 ----
442 **--regenerate-all**::
443     Regenerate all initramfs images at the default location with the kernel
444     versions found on the system. Additional parameters are passed through.
446 FILES
447 -----
448 _/var/log/dracut.log_::
449     logfile of initramfs image creation
451 _/tmp/dracut.log_::
452     logfile of initramfs image creation, if _/var/log/dracut.log_ is not
453     writable
455 _/etc/dracut.conf_::
456     see dracut.conf5
458 _/etc/dracut.conf.d/*.conf_::
459     see dracut.conf5
461 _/usr/lib/dracut/dracut.conf.d/*.conf_::
462     see dracut.conf5
464 Configuration in the initramfs
465 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
466 _/etc/conf.d/_::
467     Any files found in _/etc/conf.d/_ will be sourced in the initramfs to
468     set initial values. Command line options will override these values
469     set in the configuration files.
471 _/etc/cmdline_::
472     Can contain additional command line options. Deprecated, better use
473     /etc/cmdline.d/*.conf.
475 _/etc/cmdline.d/*.conf_::
476     Can contain additional command line options.
478 AVAILABILITY
479 ------------
480 The dracut command is part of the dracut package and is available from
481 link:$$https://dracut.wiki.kernel.org$$[https://dracut.wiki.kernel.org]
483 AUTHORS
484 -------
485 Harald Hoyer
487 Victor Lowther
489 Philippe Seewer
491 Warren Togami
493 Amadeusz Żołnowski
495 Jeremy Katz
497 David Dillow
499 Will Woods
501 SEE ALSO
502 --------
503 *dracut.cmdline*(7) *dracut.conf*(5)