我正在运行 11.04,并决定利用寒假时间来调整 Grub,直到我可以直接启动到 tty1,然后我就在某个地方转了过来。
我仍然可以启动到 tty7,但是遇到了两个新问题。
首先,在加载 Ubuntu 时,屏幕左上角没有显示 Ubuntu 徽标或任何有关正在启动哪些进程的信息,而是显示一个闪烁的光标。tty7 的图形登录最终会加载,但在此之前,我只能看到闪烁的光标。
我遇到的第二个问题是,我的其他 tty 的屏幕分辨率已更改。它看起来大约是 640 x 48。我相信它之前大约是 1280 x 720。
此时,我只想将 Grub 恢复为安装 11.04 时的默认设置。
这是我的 Grub 配置的副本,仅供参考。
引用:# 如果您更改了此文件,请随后运行“update-grub”以更新# /boot/brug/grub.cfg# 有关此文件中选项的完整文档,请参阅:# info -f grub -n 'Simple confuration'
GRUB_DEFAULT=0
#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 ipv6.disable=1"
GRUB_CMD_LINE=" vga=775 splash"
#Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernal 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"
如果这有帮助,这些是 GRUB 在启动前输入的命令。我在 GRUB 菜单中按 E 键获取了此信息:
setparams 'Ubuntu, with Linux 2.6.38-13-generic'
recordfail
set gfxpayload=$linux_gfx_mode
insmod par_msdos
insmod ext2
set root='(dev/sda,msdos5)'
seach --no-floppy --fs-uuid --set=root 4153ea84-7423-49a3-8eb80-4007a4326dda
linux /vmlinux-2.6.38-13-generic root=UUID=914b61f6-c063-4df1-a0c3-99e4b6022b7 ro vga=775 splash quiet splash ipv6.disable=1 vt.handoff=7
initrd /initrd.img-2.6.38-13-generic
答案1
这个问题在评论中得到了回答
GRUB_CMD_LINE=" vga=775 splash" 用 GRUB_CMD_LINE="" 或 GRUB_CMD_LINE="nomodeset" 替换该行