Publicado en Ubuntu

Splash Images with GRUB2 and GRUB-PC on Debian Linux

Si Usamos Ubuntu Karmic ya tenemos Grub 2 Instalado.

Sino

Step 1: Install GRUB2

We first need to install GRUB2 package giving the following command:

# sudo apt-get update
# sudo apt-get install grub2

Step 2: Install Splash Images for GRUB2 package

Despues instalamos el pack de imágenes

#sudo apt-get update
#sudo apt-get install grub2-splashimages

Step 3: Check out the new images installed

# ls /usr/share/images/grub/

Output:

050817-N-3488C-028.tga                  Glasses_800_edit.tga
2006-02-15_Piping.tga                   Hortensia-1.tga
Aesculus_hippocastanum_fruit.tga        Lake_mapourika_NZ.tga
Apollo_17_The_Last_Moon_Shot_Edit1.tga  Moraine_Lake_17092005.tga
B-1B_over_the_pacific_ocean.tga         Plasma-lamp.tga
BonsaiTridentMaple.tga                  Sparkler.tga
Flower_jtca001.tga                      TulipStair_QueensHouse_Greenwich.tga
Fly-Angel.tga                           Windbuchencom.tga#

Step 4: Change the GRUB2 splash image

Ahora cambiamos las imàgenes default de GRUB2.  Agregamos un archivo PNG o TGA, o usamos los que ya estàn. Podemos crear o convertirlo con GIMP a TGA 640×480 preferentemente y los dejamos en:
/usr/share/images/desktop-base/
/usr/share/images/grub/

Si usamos  “Plasma-lamp.tga”  de /usr/share/images/grub/.
Editamos el archivo:
# nano /etc/grub.d/05_debian_theme

de esta manera:

for i in {/boot/grub,/usr/share/images/desktop-base}/moreblue-orbit-grub.{png,tga}
to
for i in {/boot/grub,/usr/share/images/desktop-base,/usr/share/images/grub}/Plasma-lamp.{png,tga}

Eso es  todo.

Ahora regeneramos la configuracion de Grub
# sudo update-grub

Step 5: Reboot the system

Veremos la imagen elegida

Deja un comentario