解决后这个问题我试图更改双启动选项页面的显示,结果又一次陷入了困境。启动定制器。
我变了背景、字体大小(我增加了)和字体样式(我选择了 UnDotum)。但 Boot Customizer 给了我一个错误(我的意思是应用程序意外关闭的消息)。我重新启动了 BootCustomizer,设置仍然存在。当我重新启动时,没有显示正常的启动选项列表,只是我选择的背景图像,没有其他内容。
我用了 引导修复修复 grub,它说它成功了,但是当我尝试启动时仍然会出现背景图像。
有任何想法吗?
(可能是我选择了 UnDotum 字体样式?该字体已安装在 Lubuntu 中 - 但如何在显示启动选项时访问它?)
其内容etc/default/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=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"
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"
我尝试修改etc/default/grub
:将 GRUB_HIDDEN_TIMEOUT=0 修改为 10,将 GRUB_HIDDEN_TIMEOUT_QUIET=true 修改为 false,将 GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" 修改为 ""
但这无济于事
此外,使用 Shift 不会使列表可见。
我正在寻找类似这样的命令将 grub 选项重置为默认值。
答案1
重置 GRUB 的详细说明如下这里. 请仔细阅读并谨慎行事。
基本步骤如下:
chroot
和以前一样复制 resolv.conf(可能需要连接到互联网)。sudo mount /dev/sda1 /mnt && sudo mount --bind /dev /mnt/dev && sudo mount --bind /proc /mnt/proc && sudo mount --bind /sys /mnt/sys && sudo mount --bind /dev/pts /mnt/dev/pts && sudo chroot /mnt
sudo cp /etc/resolv.conf /mnt/etc/resolv.conf
确认网络连接。如果没有网络连接,GRUB 就无法重新安装,系统将无法启动。
sudo apt-get update
清除
grub
。这将删除 GRUB 和配置文件。sudo apt-get purge grub grub-pc grub-common
再次安装 GRUB。
sudo apt-get install grub-common grub-pc
- 重新安装 grub 包。
接下来将发生以下情况:
- 您将有机会向内核行添加额外的内核选项。如果您不知道,您可能不需要它们;TAB突出显示“ OK”并按 ENTER。
- 阅读安装说明。TAB单击“ OK”继续。
- 当出现设备选项时,使用 UP/DN 键选择正确的驱动器 (sdX)。
- 确保安装驱动器
/dev/sdX
旁边有一个星号 (*)(或如下图所示的红点)。如果没有,请用Up Arrow或突出显示它Down Arrow,然后按Space Bar进行选择(= 仅用向上/向下箭头突出显示它不足以选择它,您必须添加该星号/点 - 具体取决于终端类型 - 通过按Space Bar.)
不要选择分区(例如:[ ] /dev/sda5 等)。
按 TAB 键选择“OK”并按 ENTER。安装完成后,您应该已经安装了 Grub 2。
希望这可以帮助。