GNU GRUB - 显示/屏幕未对齐

GNU GRUB - 显示/屏幕未对齐

我安装了 Ubuntu 12.04 和 Windows 7 - 并且最近升级到 Ubuntu 12.10 - Ubuntu 安装了 GRUB(版本2.00-7ubuntu11)启动菜单。当我第一次使用 Ubuntu 时,我将默认操作系统更改为 Windows 7。但现在我添加了启动画面/背景,它已经错位,偏离了屏幕的右侧和底部。在 GRUB 配置文件中,我有:

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT="Windows 7 (loader) (on /dev/sda3)"
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"

# User added background
GRUB_BACKGROUND=/home/comp500/Pictures/grubsplashv2.png

GRUB_GFXMODE=1366x768

我该如何将其重新调整至我的屏幕尺寸?(1366x768,戴尔 S1909WN 显示器,仅一台显示器)启动画面是一个用 gimp 制作的 .png 文件,分辨率为 1366x768,但与菜单有偏移。(与菜单正确对齐)我执行了 vbeinfo 并发现不支持 1366x768,GRUB_GFXMODE但是当我将其设置为 1024x768 时没有任何变化。(我已经执行了 update-grub)更新:我检查了显示器的菜单屏幕,它说 GRUB 以 1024x768 运行,当我使用自动对齐功能时,它会部分对齐。有什么办法可以让 GRUB 以 1366x768 显示,或者在我的 1366x768 屏幕中间以 1024x768 显示?当 Ubuntu 和 Windows 启动时,它处于全分辨率并像往常一样正确对齐。

答案1

我知道这没什么用(至少对我来说没什么用!),但我发现注释掉 GRUB_GFXMODE 选项可以正确对齐背景图像。这对我来说没什么帮助的原因是

  1. 导致背景图像分辨率下降
  2. 改变了所有其他元素的分辨率和对齐方式
  3. (最糟糕的是)导致图像元素出现奇怪的颜色问题,在滚动启动菜单时它们会变暗

这不是解决方案,但也许是朝着正确方向迈出的一步?

相关内容