O que é o Archbackback no menu de inicialização do Arch?

11

O que é exatamente "Arch Fallback" no menu de inicialização Arch ?

    
por Yousha Aleayoub 14.08.2012 / 17:35

2 respostas

7

A página de consulta do Arch Wiki explica a diferença entre os dois:

The fallback image utilizes the same configuration file as the default image, except the autodetect hook is skipped during creation, thus including a full range of modules. The autodetect hook detects required modules and tailors the image for specific hardware, shrinking the initramfs.

Você pode criar sua própria imagem usando as opções -c e -g para mkinitcpio - isso é útil se você quiser testar suas próprias imagens (para, por exemplo, remover ganchos não aproveitados), assim:

sudo mkinitcpio -c /etc/mkinitcpio.conf.new -g /boot/linux-new.img
    
por 14.08.2012 / 20:04
5

De esta postagem no fórum Arch Linux (editada para legibilidade):

1) The kernel on arch is just one (i.e. there's no fallback kernel)

2) What's 'fallback' is the initramfs (the stuff that loads just after the kernel when you boot)

3) The difference is that the "normal" initramfs contains only the stuff that you configured to be there (/etc/mkinitcpio.conf) and the "fallback" contains the default selection of drivers (eg all filesystem drivers, etc..)

Então (como observado em um comentário) é um initramfs que carrega tudo. O kernel é o mesmo.

    
por 14.08.2012 / 19:06