如何安装 Plymouth(启动画面)

如何安装 Plymouth(启动画面)

我已经使用命令安装了 plymouth

sudo apt install plymouth-x11
sudo update-alternatives --config default.plymouth
There are 2 choices for the alternative default.plymouth (providing /usr/share/plymouth/themes/default.plymouth).

  Selection    Path                                                         Priority   Status
------------------------------------------------------------
* 0            /usr/share/plymouth/themes/bgrt/bgrt.plymouth                 110       auto mode
  1            /usr/share/plymouth/themes/bgrt/bgrt.plymouth                 110       manual mode
  2            /usr/share/plymouth/themes/ubuntu-logo/ubuntu-logo.plymouth   100       manual mode

Press <enter> to keep the current choice[*], or type selection number: 
appu@appu-try:~$ plymouth-set-default-theme space-sunrise -R
plymouth-set-default-theme: command not found
appu@appu-try:~$ plymouth-set-default-theme
plymouth-set-default-theme: command not found

如何安装 plymouth 并消除错误消息并使其检测新主题?我使用 Ubuntu 20.04。

答案1

命令plymouth-set-default-theme是 Debian 命令,在 Ubuntu 中不使用。Ubuntu 用于sudo update-alternatives --config default.plymouth设置默认的 Plymouth 主题。

您使用的任何 Plymouth 主题都需要安装到两个目录之一中。您可以将它们安装在/lib/plymouth/themes或 中/usr/share/plymouth/themes

将 Plymouth 主题安装到目录中后,您需要将主题添加到default.plymouth。要添加主题,请按如下方式添加:

sudo update-alternatives --install /usr/share/plymouth/themes/default.plymouth default.plymouth /usr/share/plymouth/themes/space-sunrise/space-sunrise.plymouth 100

然后运行该--config选项,以便您可以选择新的普利茅斯主题:

sudo update-alternatives --config default.plymouth

现在您应该看到新的主题并且可以选择它:

sudo update-alternatives --config default.plymouth
There are 4 choices for the alternative default.plymouth (providing /usr/share/plymouth/themes/default.plymouth).

  Selection    Path                                                             Priority   Status
------------------------------------------------------------
  0            /usr/share/plymouth/themes/xubuntu-logo/xubuntu-logo.plymouth     150       auto mode
* 1            /usr/share/plymouth/themes/Chicago95/Chicago95.plymouth           80        manual mode
  2            /usr/share/plymouth/themes/RetroTux/RetroTux.plymouth             70        manual mode
  3            /usr/share/plymouth/themes/space-sunrise/space-sunrise.plymouth   100       manual mode
  4            /usr/share/plymouth/themes/xubuntu-logo/xubuntu-logo.plymouth     150       manual mode

Press <enter> to keep the current choice[*], or type selection number: 3

选择之后,您现在应该更新您的 initramfs:

sudo update-initramfs -u

由于您已安装该plymouth-x11软件包,因此您可以使用以下命令测试新的 Plymouth,该命令将向您显示 10 秒钟。(根据 Plymouth 主题,它可能不会显示任何动画)。

sudo plymouthd ; sudo plymouth --show-splash ; sleep 10 ; sudo killall plymouthd

重新启动系统以查看新的变化。

希望这可以帮助!

相关内容