The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Install/Bootloader/es
Guia de Instalación: Gestor de arranque
Install Guide, Chapter 14 | < Prev | Next > |
Estas instrucciones de instalación le muestran cómo usar GRUB para arrancar utilizando BIOS (legacy) o UEFI.
Boot-update ahora en (ego boot
) se instala de forma predeterminada, pero GRUB no, ya que no es necesario para todos los sistemas Funtoo Linux (como los contenedores, por ejemplo). Pero para el arranque desde cero es el cargador de arranque recomendado y con el mejor soporte, por lo que deberá emergerlo:
(chroot) # emerge -av grub
A continuación, edite /etc/boot.conf
utilizando nano
y especifique "Funtoo Linux genkernel
" como la configuración default
en la parte superior de el archivo, reemplazando "Funtoo Linux"
. Además, si no está utilizando memtest86 +, elimine la entrada en boot.conf para evitar errores.
/etc/boot.conf
Ahora debería verse así:
/etc/boot.conf
boot {
generate grub
default "Funtoo Linux genkernel"
timeout 3
}
"Funtoo Linux" {
kernel bzImage[-v]
}
"Funtoo Linux genkernel" {
kernel kernel[-v]
initrd initramfs[-v]
params += real_root=auto
}
"Funtoo Linux better-initramfs" {
kernel vmlinuz[-v]
initrd /initramfs.cpio.gz
}
Si está arrancando un kernel personalizado o no predeterminado, por favor lea man boot.conf
para obtener información sobre las diversas opciones disponibles.
Vieja escuela (BIOS) MBR
Cuando use el arranque de la vieja escuela o BIOS, ejecute el siguiente comando para instalar GRUB en su MBR y generar el archivo de configuración /boot/grub/grub.cfg
que GRUB utilizará para arrancar:
(chroot) # grub-install --target=i386-pc --no-floppy /dev/sda (chroot) # boot-update
New School (UEFI) Boot Entry
If you're using "new school" UEFI booting, run of the following sets of commands, depending on whether you are installing a 64-bit or 32-bit system. This will add GRUB as a UEFI boot entry.
For x86-64bit systems:
(chroot) # grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id="Funtoo Linux [GRUB]" --recheck /dev/sda (chroot) # boot-update
For x86-32bit systems:
(chroot) # grub-install --target=i386-efi --efi-directory=/boot --bootloader-id="Funtoo Linux [GRUB]" --recheck /dev/sda (chroot) # boot-update
First Boot, and in the future...
OK -- you are almost ready to boot!
You only need to run grub-install
when you first install Funtoo Linux, but you need to re-run boot-update
every time you modify your /etc/boot.conf
file or add new kernels to your system. This will regenerate /boot/grub/grub.cfg
so that you will have new kernels available in your GRUB boot menu, the next time you reboot.