Como decorar Grub 2 boot loader utilizando BURG

BURG es un programa basado en GRUB 2.BURG utiliza la lista del menú,diseño de pantalla y las teclas de acceso directo para hacerlo todo mas fácil de configurar.Lo siguiente está probado en Ubuntu Karmic.

Instalación de BURG y configuración:

Editar las source.list:
sudo gedit /etc/apt/sources.list

Agregar los repos:

deb http://ppa.launchpad.net/bean123ch/burg/ubuntu karmic main
deb-src http://ppa.launchpad.net/bean123ch/burg/ubuntu karmic main

Karmic:
sudo add-apt-repository ppa:bean123ch/burg

Agregar la llave (GPG key):
gpg --keyserver subkeys.pgp.net --recv 55708F1EE06803C5
gpg --export --armor 55708F1EE06803C5 | sudo apt-key add -

Actualizar e instalar:
sudo apt-get update && sudo apt-get install grub-pc

A continuación, escriba el nuevo código de inicio en el MBR:
sudo grub-install "(hd0)"

Descarga los temas (los puedes ver al final del articulo original):
wget http://grub4dos.sourceforge.net/themes.tar.bz2

Los extraemos a /boot/grub/themes:
sudo tar -xjf themes.tar.bz2 -C /

Despues,editamos /etc/default/grub:
sudo gedit /etc/default/grub

y borramos “#”(sin astericos) presente antes de:

GRUB_TERMINAL=console

Ahora,editar /etc/grub.d/40_custom:
sudo gedit /etc/grub.d/40_custom

copia y pega lo siguiente dentro de ese archivo:

set gfxmode="640x480"
set gfxfont="Unifont Regular 16"
loadfont /boot/grub/themes/fonts/unifont.pf2
loadfont /boot/grub/themes/fonts/aqui.pf2
loadfont /boot/grub/themes/fonts/edges.pf2
loadfont /boot/grub/themes/fonts/lime.pf2
loadfont /boot/grub/themes/fonts/7x13B.pf2
loadfont /boot/grub/themes/fonts/smoothansi.pf2
loadfont /boot/grub/themes/fonts/Helvetica-Bold-14.pf2
insmod vbe
insmod png
insmod coreui
load_config /boot/grub/themes/proto/theme.txt

la ultima linea cargará el tema.Puedes cambiarla en dependencia del tema a usar:

ubuntu theme:

load_config /boot/grub/themes/ubuntu/theme.txt

winter theme:

load_config /boot/grub/themes/winter/theme.txt

proto theme:

load_config /boot/grub/themes/proto/theme.txt

Ahora usamos el siguiente comando para crear el archivo grub.cfg (update):
sudo update-grub

Enjoy!.

All credits goes to: ubuntuguide.net [Eng]

9 thoughts on “Como decorar Grub 2 boot loader utilizando BURG

  1. amporio 23/11/2009 / 15:35

    buenas

    desde luego no hay manera de quitarse el puto color kaka?

    en fin

    saludos!

    Like

  2. Santanna 25/11/2009 / 04:01

    Ola Nico,
    Se BURG es un programa en este post no hay instalación para el.
    Hay el arreglo de sources.list, (agragado los repositorios, la clave) después
    sudo spt-get update e luego apt-get install grub-pc.
    No está faltando BURG???????

    Un abrazo
    SantAnna

    Like

  3. Subxero 27/11/2009 / 19:49

    Si antes para elegir por defecto otro sistema operativo me bastaba añadir al grub en /etc/default/
    GRUB_DEFAULT=4

    Ahora como se supone que se hace ya que siempre me sale la 0 por defecto.

    Like

  4. Shawe 15/01/2010 / 11:41

    Donde has puesto:

    set gfxmode=”640×480″
    set gfxfont=”Unifont Regular 16″
    loadfont /boot/grub/themes/fonts/unifont.pf2
    loadfont /boot/grub/themes/fonts/aqui.pf2
    loadfont /boot/grub/themes/fonts/edges.pf2
    loadfont /boot/grub/themes/fonts/lime.pf2
    loadfont /boot/grub/themes/fonts/7x13B.pf2
    loadfont /boot/grub/themes/fonts/smoothansi.pf2
    loadfont /boot/grub/themes/fonts/Helvetica-Bold-14.pf2
    insmod vbe
    insmod png
    insmod coreui
    load_config /boot/grub/themes/proto/theme.txt

    Deberia ser:

    set gfxmode=”640×480″
    set gfxfont=”Unifont Regular 16″
    loadfont /boot/grub/themes/fonts/unifont.pf2
    loadfont /boot/grub/themes/fonts/aqui.pf2
    loadfont /boot/grub/themes/fonts/edges.pf2
    loadfont /boot/grub/themes/fonts/lime.pf2
    loadfont /boot/grub/themes/fonts/7x13B.pf2
    loadfont /boot/grub/themes/fonts/smoothansi.pf2
    loadfont /boot/grub/themes/fonts/Helvetica-Bold-14.pf2
    insmod vbe
    insmod png
    insmod coreui
    load_config /boot/grub/themes/proto/theme.txt
    menu_viewer.ext

    Te has comido la última linea

    Like

  5. Shawe 15/01/2010 / 11:42

    Subxero, se hace igual, pero indicandolo aquí:

    sudo gedit /etc/default/grub

    Like

Leave a comment