我已经使用命令安装了 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。
的命令
plymouth-set-default-theme
是 Debian 命令,未在 Ubuntu 中使用。Ubuntu 用于sudo update-alternatives --config default.plymouth
设置默认的普利茅斯主题。您使用的任何 Plymouth 主题都需要安装到两个目录之一。您可以将它们安装在
/lib/plymouth/themes
或中/usr/share/plymouth/themes
。将 Plymouth 主题安装到目录后,您需要将主题添加到
default.plymouth
. 要添加主题,您可以像这样添加它:然后运行该
--config
选项,以便您可以选择新的 Plymouth 主题:现在您应该看到新主题并且可以选择它:
选择之后,您现在应该更新您的 initramfs:
由于您已经安装了该
plymouth-x11
软件包,您可以使用以下命令测试新的 Plymouth,该命令将向您显示 10 秒。(根据普利茅斯主题,它可能不会显示任何动画)。重新启动系统以查看新更改。
希望这可以帮助!