Documentação sobre os parâmetros de inicialização do kernel rd.lvm, rd.luks e rd.md

6

Eu estava procurando documentação sobre como as opções rd.lvm.lv , rd.luks.uuid , opções funcionam, mas não consegui encontrar nada relevante. A documentação oficial do GRUB não as menciona.

Depois de instalar o Fedora 20, eu tinha o seguinte em /etc/default/grub :

GRUB_CMDLINE_LINUX="rd.luks.uuid=luks-********* rd.lvm.lv=VolGroup01/root rd.lvm.lvVolGroup01/swap ..."

Por que várias opções rd.lvm.lv podem ocorrer? Posso usar rd.lvm.uuid em vez de rd.lvm.lv ? Tais perguntas vêm em mente.

    
por Daniel Dinnyes 06.01.2014 / 02:45

1 resposta

7

As opções em questão parecem estar definidas no próprio kernel. Esta documentação do kernel abrange:

rd.lvm.lv=

only activate the logical volumes with the given name. rd.lvm.lv can be specified multiple times on the kernel command line.

rd.luks=0

disable crypto LUKS detection

rd.luks.uuid=

only activate the LUKS partitions with the given UUID. Any "luks-" of the LUKS UUID is removed before comparing to . The comparisons also matches, if is only the beginning of the LUKS UUID, so you don’t have to specify the full UUID. This parameter can be specified multiple times.

rd.md=0

disable MD RAID detection

rd.md.imsm=0

disable MD RAID for imsm/isw raids, use DM RAID instead

rd.md.ddf=0

disable MD RAID for SNIA ddf raids, use DM RAID instead

rd.md.conf=0

ignore mdadm.conf included in initramfs

rd.md.waitclean=1

wait for any resync, recovery, or reshape activity to finish before continuing

rd.md.uuid=

only activate the raid sets with the given UUID. This parameter can be specified multiple times.

rd.lvm.uuid parece não ser suportado.

    
por 06.01.2014 / 03:02

Tags