dracut

dracut (the tool) is used to create an initramfs image by copying tools and files from an installed system and combining it with the dracut framework, usually found in /usr/lib/dracut/modules.d.

Cost / License

  • Free
  • Open Source

Platforms

  • Linux
-
No reviews
1like
0comments
0news articles

Features

Suggest and vote on features
  1.  Command line interface

 Tags

  • boot
  • Linux
  • dracut
  • initramfs
  • initial-ramdisk
  • initramfs-image
  • system-utilities
  • initramfs-generator

dracut News & Activities

Highlights All activities

Recent activities

No activities found.

dracut information

  • Developed by

    dracutdevs
  • Licensing

    Open Source (GPL-2.0) and Free product.
  • Alternatives

    2 alternatives listed
  • Supported Languages

    • English

AlternativeTo Category

OS & Utilities

GitHub repository

  •  661 Stars
  •  409 Forks
  •  99 Open Issues
  •   Updated  
View on GitHub
dracut was added to AlternativeTo by CIAvash on and this page was last updated .
No comments or reviews, maybe you want to be first?
Post comment/review

What is dracut?

dracut (the tool) is used to create an initramfs image by copying tools and files from an installed system and combining it with the dracut framework, usually found in /usr/lib/dracut/modules.d.

Unlike other implementations, dracut hard-codes as little as possible into the initramfs. The initramfs has (basically) one purpose in life -- getting the rootfs mounted so that we can transition to the real rootfs. This is all driven off of device availability. Therefore, instead of scripts hard-coded to do various things, we depend on udev to create device nodes for us and then when we have the rootfs's device node, we mount and carry on. This helps to keep the time required in the initramfs as little as possible so that things like a 5 second boot aren't made impossible as a result of the very existence of an initramfs.

Most of the initramfs generation functionality in dracut is provided by a bunch of generator modules that are sourced by the main dracut script to install specific functionality into the initramfs. They live in the modules.d subdirectory, and use functionality provided by dracut-functions to do their work.