双启动 - Ubuntu 18.04 仅在启用安全启动时启动

双启动 - Ubuntu 18.04 仅在启用安全启动时启动

我的 Ubuntu 18.04 安装最近无法正常启动 - 我只能看到左上角带有光标的空白屏幕。但是当我启用 UEFI 安全启动选项时,启动完成。从挂起状态唤醒时也会出现空白屏幕,我必须重置计算机才能登录 Ubuntu。我拥有最新的 Nvidia 驱动程序 (440) 和以下 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_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX="nouveau.modeset=0"

# 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"

可能是什么原因造成的?我该如何解决?如果需要,我很乐意提供任何控制台输出。

答案1

将 Ubuntu 转换为传统模式

如果 Ubuntu 安装在 GPT 磁盘上(您可以通过“sudo parted -l”命令检查),请使用 Gparted 在其磁盘的启动位置创建 BIOS-Boot 分区(1MB、未格式化的文件系统、bios_grub 标志)。

启动 Boot-Repair,点击“高级选项”,转到“GRUB 位置”选项卡。取消勾选“单独的 /boot/efi 分区”选项,点击“应用”按钮。

进入你的 BIOS 设置

设置您的 BIOS 以便它以传统模式启动 HDD。

还要禁用 BIOS 中的快速启动选项。

相关内容