Saturday, August 17, 2013

How To Change GRUB2 Background Image (Splash Image) Under Ubuntu 12.04/11.10

Start the Ubuntu terminal and install first the grub2-splashimages package with this command:

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:

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:

sudo gedit /etc/default/grub

At the end of the file, add this line:

GRUB_BACKGROUND=/usr/share/images/grub/YOUR-IMAGE.tga

Replace YOUR-IMAGE.tga with your custom image name.

When you finish, press CTRL+Q and save your file. Run now this command:

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).

No comments:

Post a Comment