求解GRUB2不显示背景图片

启动讨论 grub/grub2/syslinux/grub4dos/Lilo
回复
头像
hawkingyy
帖子: 41
注册时间: 2008-05-27 16:59

求解GRUB2不显示背景图片

#1

帖子 hawkingyy » 2009-10-31 11:45

以下是我的grub.cfg文件,麻烦大婶们帮忙看看究竟是那里出问题了?

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s /boot/grub/grubenv ]; then
have_grubenv=true
load_env
fi
set default="0"
if [ ${prev_saved_entry} ]; then
saved_entry=${prev_saved_entry}
save_env saved_entry
prev_saved_entry=
save_env prev_saved_entry
fi

insmod png
insmod ext2
set root=(hd0,3)
search --no-floppy --fs-uuid --set 67cc69fb-b961-4ee5-8a05-216ca35292ed
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode="1024x768;800x600;640x480"
insmod gfxterm
insmod vbe

if terminal_output gfxterm ; then true ; else
# For backward compatibility with versions of terminal.mod that don't
# understand terminal_output
terminal gfxterm
background_image /boot/grub/background.png ##图片我已经放到相应路径里了,格式也设置好了,在“grub>”里输入这句都可以显示图片,说明应该不会是图片自己的问题##
fi
fi
if [ ${recordfail} = 1 ]; then
set timeout=-1
else
set timeout=10
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/white
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry "Ubuntu, Linux 2.6.31-14-generic" {
recordfail=1
if [ -n ${have_grubenv} ]; then save_env recordfail; fi
set quiet=1
insmod ext2
set root=(hd0,3)
search --no-floppy --fs-uuid --set 67cc69fb-b961-4ee5-8a05-216ca35292ed
linux /boot/vmlinuz-2.6.31-14-generic root=UUID=67cc69fb-b961-4ee5-8a05-216ca35292ed ro quiet splash
initrd /boot/initrd.img-2.6.31-14-generic
}
menuentry "Ubuntu, Linux 2.6.31-14-generic (recovery mode)" {
recordfail=1
if [ -n ${have_grubenv} ]; then save_env recordfail; fi
insmod ext2
set root=(hd0,3)
search --no-floppy --fs-uuid --set 67cc69fb-b961-4ee5-8a05-216ca35292ed
linux /boot/vmlinuz-2.6.31-14-generic root=UUID=67cc69fb-b961-4ee5-8a05-216ca35292ed ro single
initrd /boot/initrd.img-2.6.31-14-generic
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
linux16 /boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
linux16 /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Microsoft Windows XP Professional (on /dev/sda1)" {
insmod ntfs
set root=(hd0,1)
search --no-floppy --fs-uuid --set 0658b59558b58449
drivemap -s (hd0) ${root}
chainloader +1
}
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
头像
bbeikke
帖子: 880
注册时间: 2008-10-14 21:54

Re: 求解GRUB2不显示背景图片

#2

帖子 bbeikke » 2009-10-31 13:52

地狱可以想象,天堂却无法描述。
头像
hawkingyy
帖子: 41
注册时间: 2008-05-27 16:59

Re: 求解GRUB2不显示背景图片

#3

帖子 hawkingyy » 2009-10-31 19:21

还是木有用啊…… :em20
头像
daf3707
论坛版主
帖子: 12730
注册时间: 2007-06-13 15:57
来自: 在他乡

Re: 求解GRUB2不显示背景图片

#4

帖子 daf3707 » 2009-10-31 19:58

把位置挪一下,清除下面的2个
insmod png
background_image /boot/grub/background.png
然后添加在“set menu_color_highlight=black/white”后面
试试
npxywml
帖子: 206
注册时间: 2009-08-29 14:44

Re: 求解GRUB2不显示背景图片

#5

帖子 npxywml » 2009-10-31 20:37

我的做法是这样的,供参考:
第一,我是boot单独分区的,所以在图片的路径上将boot去掉,即/boot/grub/background.png改为/grub/background.png
第二,我在图片的路径前面加了(hd0,9),即(hd0,9)/grub/background.png,因为我的boot是在这个分区,你不一定是在(hd0,3),这个是启动分区,启动分区与boot分区不一定一样,看你安装时是如何设置启动引导的。
头像
hawkingyy
帖子: 41
注册时间: 2008-05-27 16:59

Re: 求解GRUB2不显示背景图片

#6

帖子 hawkingyy » 2009-10-31 23:43

npxywml 写了:我的做法是这样的,供参考:
第一,我是boot单独分区的,所以在图片的路径上将boot去掉,即/boot/grub/background.png改为/grub/background.png
第二,我在图片的路径前面加了(hd0,9),即(hd0,9)/grub/background.png,因为我的boot是在这个分区,你不一定是在(hd0,3),这个是启动分区,启动分区与boot分区不一定一样,看你安装时是如何设置启动引导的。
多谢你啦!!
我还想问一下怎么查看boot分区呢?
头像
honghong
帖子: 317
注册时间: 2009-05-14 14:06

Re: 求解GRUB2不显示背景图片

#7

帖子 honghong » 2009-10-31 23:48

npxywml 写了:我的做法是这样的,供参考:
第一,我是boot单独分区的,所以在图片的路径上将boot去掉,即/boot/grub/background.png改为/grub/background.png
第二,我在图片的路径前面加了(hd0,9),即(hd0,9)/grub/background.png,因为我的boot是在这个分区,你不一定是在(hd0,3),这个是启动分区,启动分区与boot分区不一定一样,看你安装时是如何设置启动引导的。

9个分区,狂汗 :em20 :em20 :em20
That is in my life!
npxywml
帖子: 206
注册时间: 2009-08-29 14:44

Re: 求解GRUB2不显示背景图片

#8

帖子 npxywml » 2009-11-01 0:48

hawkingyy 写了:
npxywml 写了:我的做法是这样的,供参考:
第一,我是boot单独分区的,所以在图片的路径上将boot去掉,即/boot/grub/background.png改为/grub/background.png
第二,我在图片的路径前面加了(hd0,9),即(hd0,9)/grub/background.png,因为我的boot是在这个分区,你不一定是在(hd0,3),这个是启动分区,启动分区与boot分区不一定一样,看你安装时是如何设置启动引导的。
多谢你啦!!
我还想问一下怎么查看boot分区呢?
用:
df -h
npxywml
帖子: 206
注册时间: 2009-08-29 14:44

Re: 求解GRUB2不显示背景图片

#9

帖子 npxywml » 2009-11-01 0:51

honghong 写了:
npxywml 写了:我的做法是这样的,供参考:
第一,我是boot单独分区的,所以在图片的路径上将boot去掉,即/boot/grub/background.png改为/grub/background.png
第二,我在图片的路径前面加了(hd0,9),即(hd0,9)/grub/background.png,因为我的boot是在这个分区,你不一定是在(hd0,3),这个是启动分区,启动分区与boot分区不一定一样,看你安装时是如何设置启动引导的。

9个分区,狂汗 :em20 :em20 :em20
我有三系统,XP,WIN7和ubuntu,前面几个区是win系统。
头像
hawkingyy
帖子: 41
注册时间: 2008-05-27 16:59

Re: 求解GRUB2不显示背景图片

#10

帖子 hawkingyy » 2009-11-01 12:26

npxywml 写了:
hawkingyy 写了:
npxywml 写了:我的做法是这样的,供参考:
第一,我是boot单独分区的,所以在图片的路径上将boot去掉,即/boot/grub/background.png改为/grub/background.png
第二,我在图片的路径前面加了(hd0,9),即(hd0,9)/grub/background.png,因为我的boot是在这个分区,你不一定是在(hd0,3),这个是启动分区,启动分区与boot分区不一定一样,看你安装时是如何设置启动引导的。
多谢你啦!!
我还想问一下怎么查看boot分区呢?
用:
df -h
我的结果是这样的:
/dev/sda3 15G 2.8G 12G 20% /
udev 497M 284K 497M 1% /dev
none 497M 1.2M 496M 1% /dev/shm
none 497M 80K 497M 1% /var/run
none 497M 0 497M 0% /var/lock
none 497M 0 497M 0% /lib/init/rw

你说那个是BOOT分区呢?
多谢拉!! :em11
chimf
帖子: 9
注册时间: 2009-06-04 15:27

Re: 求解GRUB2不显示背景图片

#11

帖子 chimf » 2009-11-01 12:44

如果要使用背景需要使用video模块
在你的配置文件中加上这一个就可以了

insmod video

(还有~~~编辑的时候记得要用utf-8编码,不然启动后的GRUB看到的中文就乱码~~~)
头像
hawkingyy
帖子: 41
注册时间: 2008-05-27 16:59

Re: 求解GRUB2不显示背景图片

#12

帖子 hawkingyy » 2009-11-01 13:23

daf3707 写了:把位置挪一下,清除下面的2个
insmod png
background_image /boot/grub/background.png
然后添加在“set menu_color_highlight=black/white”后面
试试

多谢各位GG啦,这位同学的说法是正确的!
回复