]> git.ipfire.org Git - thirdparty/dracut.git/blame - dracut.8.asc
AUTHORS: update
[thirdparty/dracut.git] / dracut.8.asc
CommitLineData
888d53f2
HH
1DRACUT(8)
2=========
3:doctype: manpage
4:man source: dracut
5:man manual: dracut
6
7NAME
8----
9dracut - low-level tool for generating an initramfs image
10
11SYNOPSIS
12--------
13*dracut* ['OPTION...'] [<image> [_<kernel version>_]]
14
15DESCRIPTION
16-----------
4c3be42c
HH
17
18Create an initramfs <image> for the kernel with the version <kernel version>.
19If <kernel version> is omitted, then the version of the actual running
20kernel is used. If <image> is omitted or empty, then the default location
21/boot/initramfs-<kernel version>.img is used.
22
888d53f2
HH
23dracut creates an initial image used by the kernel for preloading the block
24device modules (such as IDE, SCSI or RAID) which are needed to access the root
25filesystem, mounting the root filesystem and booting into the real system.
26
27At boot time, the kernel unpacks that archive into RAM disk, mounts and uses it
28as initial root file system. All finding of the root device happens in this
29early userspace.
30
4c3be42c
HH
31For a complete list of kernel command line options see *dracut.cmdline*(7).
32
33EXAMPLE
34-------
35
36To create a initramfs image, the most simple command is:
37----
38# dracut
39----
40
41This will generate a general purpose initramfs image, with all possible
42functionality resulting of the combination of the installed dracut modules and
43system tools. The image is /boot/initramfs-_++<kernel version>++_.img and
44contains the kernel modules of the currently active kernel with version
45_++<kernel version>++_.
46
47If the initramfs image already exists, dracut will display an error message, and
48to overwrite the existing image, you have to use the --force option.
49----
50# dracut --force
51----
52
53If you want to specify another filename for the resulting image you would issue
54a command like:
55----
56# dracut foobar.img
57----
58
59To generate an image for a specific kernel version, the command would be:
60----
61# dracut foobar.img 2.6.40-1.rc5.f20
62----
63
64A shortcut to generate the image at the default location for a specific kernel
65version is:
66----
67# dracut --kver 2.6.40-1.rc5.f20
68----
69
70If you want to create lighter, smaller initramfs images, you may want to specify
71the --host-only or -H option. Using this option, the resulting image will
72contain only those dracut modules, kernel modules and filesystems, which are
73needed to boot this specific machine. This has the drawback, that you can't put
74the disk on another controller or machine, and that you can't switch to another
75root filesystem, without recreating the initramfs image. The usage of the
76--host-only option is only for experts and you will have to keep the broken
77pieces. At least keep a copy of a general purpose image (and corresponding
78kernel) as a fallback to rescue your system.
79
888d53f2
HH
80
81OPTIONS
82-------
e65caf36
HH
83**--kver** _<kernel version>_::
84 set the kernel version. This enables to specify the kernel version, without
85 specifying the location of the initramfs image. For example:
86----
87# dracut --kver 3.5.0-0.rc7.git1.2.fc18.x86_64
88----
89
888d53f2
HH
90**-f, --force**::
91 overwrite existing initramfs file.
92
93**-m, --modules** _<list of dracut modules>_::
0cec2304
HH
94 specify a space-separated list of dracut modules to call when building the
95 initramfs. Modules are located in _/usr/lib/dracut/modules.d_. This
96 parameter can be specified multiple times.
888d53f2
HH
97+
98[NOTE]
99===============================
100If [LIST] has multiple arguments, then you have to put these in quotes. For
101example:
102----
103# dracut --modules "module1 module2" ...
104----
105===============================
106
107**-o, --omit** _<list of dracut modules>_::
0cec2304
HH
108 omit a space-separated list of dracut modules. This parameter can be
109 specified multiple times.
18595ced 110+
888d53f2
HH
111[NOTE]
112===============================
113If [LIST] has multiple arguments, then you have to put these in quotes. For
114example:
115----
116# dracut --omit "module1 module2" ...
117----
118===============================
119
120**-a, --add** _<list of dracut modules>_::
121 add a space-separated list of dracut modules to the default set of modules.
122 This parameter can be specified multiple times.
123+
124[NOTE]
125===============================
126If [LIST] has multiple arguments, then you have to put these in quotes. For
127example:
128----
129# dracut --add "module1 module2" ...
130----
131===============================
132
133**--force-add** _<list of dracut modules>_::
134 force to add a space-separated list of dracut modules to the default set of
135 modules, when -H is specified. This parameter can be specified multiple
136 times.
137+
138[NOTE]
139===============================
140If [LIST] has multiple arguments, then you have to put these in quotes. For
141example:
142----
143# dracut --force-add "module1 module2" ...
144----
145===============================
146
147**-d, --drivers** _<list of kernel modules>_::
148 specify a space-separated list of kernel modules to exclusively include
149 in the initramfs. The kernel modules have to be specified without the ".ko"
150 suffix. This parameter can be specified multiple times.
151+
152[NOTE]
153===============================
154If [LIST] has multiple arguments, then you have to put these in quotes. For
155example:
156----
157# dracut --drivers "kmodule1 kmodule2" ...
158----
159===============================
160
161**--add-drivers** _<list of kernel modules>_::
162 specify a space-separated list of kernel modules to add to the initramfs.
163 The kernel modules have to be specified without the ".ko" suffix. This
164 parameter can be specified multiple times.
165+
166[NOTE]
167===============================
168If [LIST] has multiple arguments, then you have to put these in quotes. For
169example:
170----
171# dracut --add-drivers "kmodule1 kmodule2" ...
172----
173===============================
174
175**--omit-drivers** _<list of kernel modules>_::
176 specify a space-separated list of kernel modules not to add to the
177 initramfs.
178 The kernel modules have to be specified without the ".ko" suffix. This
179 parameter can be specified multiple times.
180+
181[NOTE]
182===============================
183If [LIST] has multiple arguments, then you have to put these in quotes. For
184example:
185----
186# dracut --omit-drivers "kmodule1 kmodule2" ...
187----
188===============================
189
190**--filesystems** _<list of filesystems>_::
191 specify a space-separated list of kernel filesystem modules to exclusively
192 include in the generic initramfs. This parameter can be specified multiple
193 times.
18595ced 194+
888d53f2
HH
195[NOTE]
196===============================
197If [LIST] has multiple arguments, then you have to put these in quotes. For
198example:
199----
200# dracut --filesystems "filesystem1 filesystem2" ...
201----
202===============================
203
204**-k, --kmoddir** _<kernel directory>_::
205 specify the directory, where to look for kernel modules
206
207**--fwdir** _<dir>[:<dir>...]++_::
208 specify additional directories, where to look for firmwares. This parameter
209 can be specified multiple times.
210
211**--kernel-only**::
212 only install kernel drivers and firmware files
213
214**--no-kernel**::
215 do not install kernel drivers and firmware files
216
217**--mdadmconf**::
218 include local _/etc/mdadm.conf_
219
220**--nomdadmconf**::
221 do not include local _/etc/mdadm.conf_
222
223**--lvmconf**::
224 include local _/etc/lvm/lvm.conf_
225
226**--nolvmconf**::
227 do not include local _/etc/lvm/lvm.conf_
228
229**--fscks** [LIST]::
230 add a space-separated list of fsck tools, in addition to _dracut.conf_'s
231 specification; the installation is opportunistic (non-existing tools are
232 ignored)
233+
234[NOTE]
235===============================
236If [LIST] has multiple arguments, then you have to put these in quotes. For
237example:
238----
239# dracut --fscks "fsck.foo barfsck" ...
240----
241===============================
242
243**--nofscks**::
244 inhibit installation of any fsck tools
245
246**--strip**::
04d18f55 247 strip binaries in the initramfs
888d53f2
HH
248
249**--nostrip**::
04d18f55
HH
250 do not strip binaries in the initramfs (default)
251
252**--hardlink**::
253 hardlink files in the initramfs (default)
254
255**--nohardlink**::
256 do not hardlink files in the initramfs
888d53f2
HH
257
258**--prefix** _<dir>_::
259 prefix initramfs files with the specified directory
260
261**--noprefix**::
262 do not prefix initramfs files (default)
263
888d53f2
HH
264**-h, --help**::
265 display help text and exit.
266
267**--debug**::
268 output debug information of the build process
269
270**-v, --verbose**::
271 increase verbosity level (default is info(4))
272
273**-q, --quiet**:: decrease verbosity level (default is info(4))
274
275**-c, --conf** _<dracut configuration file>_::
276 specify configuration file to use.
277+
278Default:
279 _/etc/dracut.conf_
280
281**--confdir** _<configuration directory>_::
282 specify configuration directory to use.
283+
284Default:
285 _/etc/dracut.conf.d_
286
4dd68ca4
287**--tmpdir** _<temporary directory>_::
288 specify temporary directory to use.
289+
290Default:
291 _/var/tmp_
292
888d53f2
HH
293**--sshkey** _<sshkey file>_:: ssh key file used with ssh-client module.
294
295**-l, --local**::
296 activates the local mode. dracut will use modules from the current working
297 directory instead of the system-wide installed modules in
298 _/usr/lib/dracut/modules.d_.
299 This is useful when running dracut from a git checkout.
300
301**-H, --hostonly**::
1d97bb8b
302 Host-Only mode: Install only what is needed for booting the local host
303 instead of a generic host and generate host-specific configuration.
888d53f2
HH
304+
305[WARNING]
306====
0cec2304
HH
307If chrooted to another root other than the real root device, use "--fstab" and
308provide a valid _/etc/fstab_.
888d53f2
HH
309====
310
cb74b382
HH
311**--no-hostonly**::
312 Disable Host-Only mode
313
888d53f2
HH
314**--fstab**::
315 Use _/etc/fstab_ instead of _/proc/self/mountinfo_.
316
bd66d2b5 317**--add-fstab** _<filename>_ ::
888d53f2
HH
318 Add entries of _<filename>_ to the initramfs /etc/fstab.
319
320**--mount** "_<device>_ _<mountpoint>_ _<filesystem type>_ _<filesystem options>_"::
f0690513
HH
321 Mount _<device>_ on _<mountpoint>_ with _<filesystem type>_ and _<filesystem
322 options>_ in the initramfs
888d53f2
HH
323
324**-i, --include** _<SOURCE>_ _<TARGET>_::
325 include the files in the SOURCE directory into the
326 TARGET directory in the final initramfs. If SOURCE is a file, it will be
327 installed to TARGET in the final initramfs. This parameter can be specified
328 multiple times.
329
330**-I, --install** _<file list>_::
331 install the space separated list of files into the initramfs.
332+
333[NOTE]
334===============================
335If [LIST] has multiple arguments, then you have to put these in quotes. For
336example:
888d53f2
HH
337----
338# dracut --install "/bin/foo /sbin/bar" ...
339----
340===============================
341
342**--gzip**::
343 Compress the generated initramfs using gzip. This will be done by default,
344 unless another compression option or --no-compress is passed. Equivalent to
345 "--compress=gzip -9"
346
347**--bzip2**::
348 Compress the generated initramfs using bzip2.
349+
350[WARNING]
351====
352Make sure your kernel has bzip2 decompression support compiled in, otherwise you
353will not be able to boot. Equivalent to "--compress=bzip2"
354====
355
356**--lzma**::
357 Compress the generated initramfs using lzma.
358+
359[WARNING]
360====
361Make sure your kernel has lzma decompression support compiled in, otherwise you
362will not be able to boot. Equivalent to "--compress=lzma -9"
363====
364
365**--xz**::
366 Compress the generated initramfs using xz.
367+
368[WARNING]
369====
370Make sure your kernel has xz decompression support compiled in, otherwise you
371will not be able to boot. Equivalent to "--compress=xz --check=crc32
372--lzma2=dict=1MiB"
373====
374
375**--compress** _<compressor>_::
376 Compress the generated initramfs using the passed compression program. If
377 you pass it just the name of a compression program, it will call that
378 program with known-working arguments. If you pass a quoted string with
379 arguments, it will be called with exactly those arguments. Depending on what
380 you pass, this may result in an initramfs that the kernel cannot decompress.
381
382**--no-compress**::
383 Do not compress the generated initramfs. This will override any other
384 compression options.
385
386**--list-modules**::
387 List all available dracut modules.
388
389**-M, --show-modules**::
390 Print included module's name to standard output during build.
391
392**--keep**::
393 Keep the initramfs temporary directory for debugging purposes.
394
395FILES
396-----
397_/var/log/dracut.log_::
398 logfile of initramfs image creation
399
400_/tmp/dracut.log_::
401 logfile of initramfs image creation, if _/var/log/dracut.log_ is not
402 writable
403
404_/etc/dracut.conf_::
405 see dracut.conf5
406
407_/etc/dracut.conf.d/*.conf_::
408 see dracut.conf5
409
410Configuration in the initramfs
411~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
412_/etc/conf.d/_::
413 Any files found in _/etc/conf.d/_ will be sourced in the initramfs to
414 set initial values. Command line options will override these values
415 set in the configuration files.
416
417_/etc/cmdline_::
418 Can contain additional command line options.
419
420AVAILABILITY
421------------
422The dracut command is part of the dracut package and is available from
423link:$$https://dracut.wiki.kernel.org$$[https://dracut.wiki.kernel.org]
424
425AUTHORS
426-------
9f355169 427Harald Hoyer
888d53f2 428
9f355169 429Victor Lowther
888d53f2 430
9f355169 431Philippe Seewer
888d53f2 432
9f355169 433Warren Togami
888d53f2 434
9f355169 435Amadeusz Żołnowski
888d53f2 436
9f355169 437Jeremy Katz
888d53f2 438
9f355169 439David Dillow
888d53f2 440
9f355169 441Will Woods
888d53f2
HH
442
443SEE ALSO
444--------
445*dracut.cmdline*(7) *dracut.conf*(5)