grafische Auflösung von Grub2 lässt sich nicht verändern

bamse

New member
Registriert
7 Jan. 2009
Beiträge
17
Hallo zusammen,
ich habe mit dem neuen Grub ein kleines Problem. Und zwar hätte ich gerne eine höhre Auflösung für den Grub-Screen (also das Menü, in dem man den Kernel/Betriebssystem auswählen kann) um z.B. ein Hintergrund-Bild einzufügen. Aber auch um auf der Konsole eine höhere Auflösung zu bekommen. Aber eins nach dem anderen. Als Default-Wert für die Auflösung unter Grub ist der Wert 640x480 vorgegeben. Man ändert dies durch editieren der Datei "/etc/default/grub". Also habe ich diesen Wert mit gfxmode=1400x1050 verändert. Diese Auflösung ist die Standartauflösung meines T60 und mit gfxinfo kann man sich auch die möglichen Auflösungen anzeigen lassen. Gesagt, getan und anschliessend update-grub ausgeführt. Dann habe ich noch in die /boot/grub/grub.cfg reingeschaut und siehe da:
Code:
set gfxmode=1400x1050
so wie es sein soll. Aber leider ignoriert Grub diese Einstellung komplett. Was ich auch versuche, ich bekomme immer nur die Standardeinstellung: 640x480.
Jemand eine Idee, woran das liegen kann? Irgend eine Eigenart des Thinkpads?

Danke schonmal vorab

Gruss Christian

P.S. meine grub.cfg:
Code:
#
# 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 ###
set default=0
insmod ext2
set root=(hd0,2)
search --no-floppy --fs-uuid --set d3b9e534-2907-4ae2-a390-d1761066dcc0
if loadfont /usr/share/grub/unicode.pf2 ; then
   set gfxmode=1400x1050
#  set gfxmode=keep
  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
  fi
fi
set timeout=5
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
insmod ext2
set root=(hd0,2)
search --no-floppy --fs-uuid --set d3b9e534-2907-4ae2-a390-d1761066dcc0
insmod png
if background_image /boot/grub/moreblue-orbit-grub.png ; then
  set color_normal=black/black
  set color_highlight=magenta/black
else
  set menu_color_normal=cyan/blue
  set menu_color_highlight=white/blue
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry "Debian GNU/Linux, Linux 2.6.30-2-686" {
	insmod ext2
	set root=(hd0,2)
	search --no-floppy --fs-uuid --set d3b9e534-2907-4ae2-a390-d1761066dcc0
	linux	/boot/vmlinuz-2.6.30-2-686 root=UUID=d3b9e534-2907-4ae2-a390-d1761066dcc0 ro  quiet gfxpayload=800x600x8,800x600 splash 
	initrd	/boot/initrd.img-2.6.30-2-686
}
menuentry "Debian GNU/Linux, Linux 2.6.30-2-686 (recovery mode)" {
	insmod ext2
	set root=(hd0,2)
	search --no-floppy --fs-uuid --set d3b9e534-2907-4ae2-a390-d1761066dcc0
	linux	/boot/vmlinuz-2.6.30-2-686 root=UUID=d3b9e534-2907-4ae2-a390-d1761066dcc0 ro single  
	initrd	/boot/initrd.img-2.6.30-2-686
}
menuentry "Debian GNU/Linux, Linux 2.6.30-1-686" {
	insmod ext2
	set root=(hd0,2)
	search --no-floppy --fs-uuid --set d3b9e534-2907-4ae2-a390-d1761066dcc0
	linux	/boot/vmlinuz-2.6.30-1-686 root=UUID=d3b9e534-2907-4ae2-a390-d1761066dcc0 ro  quiet gfxpayload=800x600x8,800x600 splash 
	initrd	/boot/initrd.img-2.6.30-1-686
}
menuentry "Debian GNU/Linux, Linux 2.6.30-1-686 (recovery mode)" {
	insmod ext2
	set root=(hd0,2)
	search --no-floppy --fs-uuid --set d3b9e534-2907-4ae2-a390-d1761066dcc0
	linux	/boot/vmlinuz-2.6.30-1-686 root=UUID=d3b9e534-2907-4ae2-a390-d1761066dcc0 ro single  
	initrd	/boot/initrd.img-2.6.30-1-686
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/11_chainload ###
menuentry "WinXP" {
	set root=(hd0,1)
	chainloader +1
}
### END /etc/grub.d/11_chainload ###

### BEGIN /etc/grub.d/30_os-prober ###
### 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 ###
 
  • ok1.de
  • ok2.de
  • thinkstore24.de
  • Preiswerte-IT - Gebrauchte Lenovo Notebooks kaufen

Werbung

Zurück
Oben