Re: GRUB 2: A Guide for Users
Grub2 also supports other resolutions than the default 640x480.
Utterly useless feature, of course, but pretty with a nice big splash image in the background. Now the seconds spent in the menu are full of eye-candy.
Steps to make it happen:
(All disclaimers apply when messing with grub2, make sure you have an alternative method to boot)
1. press 'c' in grub to get to the grub command line.
2. run 'vbeinfo' to get a list of supported resolutions on your hardware.
3. edit /etc/default/grub and uncomment line:
and change it to your chosen resolution.
4. Create a background image in your resolution and save it as .tga (targa), save it to /boot/grub/
5. Edit /etc/grub.d/05_debian_theme, line 16 to match
(6. Optional, change the text colors in 05_debian_theme on lines 39-40, I set mine as
(black is transparent as a background))
7. Run 'sudo update-grub'
(the output should include 'Found Debian background: yourimage.tga')
8. Next boot should have a prettier grub
Grub2 also supports other resolutions than the default 640x480.
Utterly useless feature, of course, but pretty with a nice big splash image in the background. Now the seconds spent in the menu are full of eye-candy.
Steps to make it happen:
(All disclaimers apply when messing with grub2, make sure you have an alternative method to boot)
1. press 'c' in grub to get to the grub command line.
2. run 'vbeinfo' to get a list of supported resolutions on your hardware.
3. edit /etc/default/grub and uncomment line:
#GRUB_GFXMODE=640x480
4. Create a background image in your resolution and save it as .tga (targa), save it to /boot/grub/
5. Edit /etc/grub.d/05_debian_theme, line 16 to match
for i in {/boot/grub,/usr/share/images/desktop-base}/nameofyourimage.{png,tga} ; do
set color_normal=light-gray/black
set color_highlight=white/dark-gray
set color_highlight=white/dark-gray
7. Run 'sudo update-grub'
(the output should include 'Found Debian background: yourimage.tga')
8. Next boot should have a prettier grub
Comment