LUKS 密码屏幕未显示

LUKS 密码屏幕未显示

我使用完全 LUKS 加密的 LVM 安装了 Ubuntu。

它运行正常,但有一个问题:在启动时在 Grub 中选择 Ubuntu 后,“输入密码以解锁磁盘”屏幕不会出现。我可以(盲目地)在黑屏上输入密码,它就可以正常工作。几秒钟后,启动过程正常,一切正常。

但我想知道为什么我的屏幕上什么都没有。

安装后的前 2-3 次,它按预期工作,但在过去几天的某个时候,屏幕保持黑屏。(我真的说不出我做了什么导致了它。。)

这是我的/etc/default/grub文件:

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="kopt=root=/dev/mapper/vgubuntu-root 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"

答案1

在您的grub配置中,您会注意到有一行包含“quiet splash”:

  • quiet抑制启动屏幕上烦人的滚动消息。
  • splash加载plymouth图形启动主题显示,该显示还负责提示输入 LUKS 密码。

自从Ubuntu 17.10发现 Plymouth 中存在一个漏洞,导致 LUKS 密码提示被破坏。

我建议你访问 Launchpad 错误报告这里。注册以指出错误对您造成的影响。还可注册“错误邮件”,以便在发布新消息时收到通知。

此错误还会影响Ubuntu 18.04 LTSFedora 27

相关内容