This is a static archive of the old Zorin Forum.

The information below may be outdated. Visit the new Zorin Forum here ›

If you have registered on the old forum, you will need to create an account on the new forum.

Change GRUB Background Image (Splash Image)

agungaskcom

Tue Nov 27, 2012 6:04:21 am

In this tutorial we will see how to change the background image (splash screen) of the GRUB boot loader under Zorin
Image
grub1 by agungaskcom, on Flickr

When you start your system, a boot menu will show up containing an ordered list of operating systems and kernels. This boot menu is blue by default and can be customized as follows:
Start the terminal and install first the grub2-splashimages package with this command:
Code:
sudo apt-get install grub2-splashimages

GRUB spalsh images are stored in the /usr/share/images/grub folder, you can access it with this command:
Code:
sudo nautilus /usr/share/images/grub

If you want to use a custom image, make sure it is in the TGA format, then place it in that folder. After deciding which image to use as splash screen for the GRUB2 boot loader, edit now the /etc/default/grub file with this command:
Code:
sudo gedit /etc/default/grub

At the end of the file, add this line:
Code:
GRUB_BACKGROUND=/usr/share/images/grub/YOUR-IMAGE.tga

Replace YOUR-IMAGE.tga with your custom image name.
Image
grub2 by agungaskcom, on Flickr

When you finish, press CTRL+Q and save your file. Run now this command:
Code:
sudo update-grub

Restart now your computer to see if changes are successful (hold down the SHIFT key to bring up the GRUB boot screen while rebooting).