I have adapted a PFF Wallpaper image as a GRUB Splash Image. If you want to have your GRUB boot menu look like this, here is how:
if it does not already exist, create a splash image directory in /boot/grub/:
code:
sudo mkdir /boot/grub/splashimages
change to the splash image directory and download the image:
code:
cd /boot/grub/splashimages
sudo wget ftp://ftp.billmarking.net/Linux/fiero.xpm.gz
edit /grub/boot/menu.lst as follows
add/change Pretty colors to the following:
note: if you don't do this, you may not be able to see the text in the menu
code:
# Pretty colours
# color cyan/blue white/blue
foreground = ffffff
background = 0000ff
add the following lines:
note: you might need to change (hd0,1) to suit your installation
(hd0,0)=first drive, first partition
(hd0,1)=first drive, second partition
etc.
code:
# Splash Image
splashimage=(hd0,1)/boot/grub/splashimages/fiero.xpm.gz
comment out the line that hides the menu (if it is hidden), so you can see what you have done:
code:
## hiddenmenu
# Hides the menu by default (press ESC to see the menu)
#hiddenmenu
Reboot and see the Fiero Splash Screen.
------------------
[This message has been edited by williegoat (edited 02-27-2010).]