LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Grub Background Image Help (https://www.linuxquestions.org/questions/linux-newbie-8/grub-background-image-help-809883/)

Ubunoob001 05-24-2010 05:53 PM

Grub Background Image Help
 
Hi all,
I am trying to make an image to use as background on Grub as per [HTML]https://help.ubuntu.com/community/Grub2#Splash%20Images%20and%20Theming[/HTML]

I edited the beginning of /etc/grub.d/05_debian_theme from the first to the second "code quote" as below.

Question: I am still recieving the same standard Grub screen (black background w/ white text). What else do i need to change in that file?

Original
Code:

source /usr/lib/grub/grub-mkconfig_lib

# this allows desktop-base to override our settings
f=/usr/share/desktop-base/grub_background.sh
if test -e ${f} ; then
  source ${f}
else
  WALLPAPER="/usr/share/images/desktop-base/moreblue-orbit-grub.png"
  COLOR_NORMAL="black/black"
  COLOR_HIGHLIGHT="magenta/black"

to

Code:

source /usr/lib/grub/grub-mkconfig_lib

# this allows desktop-base to override our settings
f=/usr/share/desktop-base/grub_background.sh
if test -e ${f} ; then
  source ${f}
else
  WALLPAPER="/usr/share/images/grub/Apollo_17_The_Last_Moon_Shot_Edit1.png"
  COLOR_NORMAL="black/black"
  COLOR_HIGHLIGHT="magenta/black"

Many thanks

Bratmon 05-24-2010 06:11 PM

Does the file /usr/share/images/grub/Apollo_17_The_Last_Moon_Shot_Edit1.png exist?

grail 05-24-2010 06:19 PM

Actually my question would be is the other image showing?
Quote:

WALLPAPER="/usr/share/images/desktop-base/moreblue-orbit-grub.png"
Because if the "if" test works you will never get to the images.

Ubunoob001 05-24-2010 07:32 PM

Forgive Me
 
Quote:

Originally Posted by Bratmon (Post 3979988)
Does the file /usr/share/images/grub/Apollo_17_The_Last_Moon_Shot_Edit1.png exist?

I am ashamed to admit such a newbie (and rather lazy/disrespectful) error. But yes Bratmon you were correct. The pathname contained an error. Forgive me. This will teach me a lesson about errors in text.
UBU


All times are GMT -5. The time now is 11:54 PM.