Renuncia de responsabilidad:
Este manual ha sido sustituido por una versión más reciente y no tendrá
soporte de aquí en adelante.
|
[ << ]
[ < ]
[ Inicio ]
[ > ]
[ >> ]
10. Configuring the Bootloader
Contenido:
10.a. Making your Choice
Introduction
Now that your kernel is configured and compiled and the necessary system
configuration files are filled in correctly, it is time to install a
program that will fire up your kernel when you start the system. Such a
program is called a bootloader.
10.b. Installing the SPARC Bootloader: SILO
It is now time to install and configure SILO, the Sparc Improved boot
LOader.
Listado de Código 2.1: Installing SILO |
# emerge --usepkg silo
|
Now open up your favorite editor (we use nano as an example) and
create /etc/silo.conf.
Listado de Código 2.2: Creating /etc/silo.conf |
# nano -w /etc/silo.conf
|
Below you'll find an example silo.conf file. It uses the
partitioning scheme we use throughout this book and
kernel-2.4.24 as kernelimage.
Listado de Código 2.3: Example /etc/silo.conf |
partition = 1
root = /dev/hda4
timeout = 150
image = /boot/kernel-2.4.24
label = linux
|
If you use the example silo.conf delivered by Portage, be
sure to comment out all lines that you do not need.
If the physical disk on which you want to install SILO (as bootloader) differs
from the physical disk on which /etc/silo.conf resides, you must
copy over /etc/silo.conf to a partition on that disk. Assuming that
/boot is a separate partition on that disk, copy over the
configuration file to /boot and run /sbin/silo:
Listado de Código 2.4: Only if /boot and the SILO destination are on the same disk |
# cp /etc/silo.conf /boot
# /sbin/silo -C /boot/silo.conf
/boot/silo.conf appears to be valid
|
Otherwise just run /sbin/silo:
Listado de Código 2.5: Run silo |
# /sbin/silo
/etc/silo.conf appears to be valid
|
Now continue with Rebooting the System.
10.c. Rebooting the System
Exit the chrooted environment and unmount all mounted partitions. Then type in
that one magical command you have been waiting for: reboot.
Listado de Código 3.1: Exiting the chroot, unmounting all partitions and rebooting |
# exit
cdimage ~# cd
cdimage ~# umount /mnt/gentoo/boot /mnt/gentoo/proc /mnt/gentoo
cdimage ~# reboot
|
Of course, don't forget to remove the bootable CD, otherwise the CD will be
booted again instead of your new Gentoo system.
Once rebooted in your Gentoo installation, finish up with Finalizing your Gentoo Installation.
[ << ]
[ < ]
[ Inicio ]
[ > ]
[ >> ]
El contenido de este documento, a no ser que se especifique
expresamente, está registrado bajo los términos de la licencia
CC-BY-SA-2.5. Se aplican las
Pautas de
Utilización del logotipo y nombre de Gentoo.
|