Ubuntu Server 18.10 启动画面自定义

Ubuntu Server 18.10 启动画面自定义

我无法更改 Ubuntu Server 18.10 中的启动画面。

我已经安装plymouth-theme-ubuntu-logo并修改了/etc/default/grub以下结果:

GRUB_DEFAULT=0
GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=0
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

然后我更新了 grub

 sudo update-initramfs -u
 sudo update-grub

但徽标没有出现。

我究竟做错了什么?

此方法在 Ubuntu Server 16.04 中有效。

答案1

GRUB_CMDLINE_LINUX_DEFAULT 行仅在 GRUB_CMDLINE_LINUX 不存在时才使用。因此,您应该像这样设置它:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX="quiet splash"

相关内容