安装
1.下载 Plymouth 主题文件,通常是一个 .plymouth 或 .theme 文件。
#官方仓库下载
apt-cache search plymouth-theme
#debian网
https://wiki.debian.org/plymouth
https://www.freedesktop.org/wiki/Software/Plymouth/
2.将下载的主题文件复制到 /usr/share/plymouth/themes/ 目录下。如果该目录不存在,可以手动创建。
3.更新 Plymouth 的主题列表。可以使用以下命令来更新:
sudo update-alternatives --install /usr/share/plymouth/themes/default.plymouth default.plymouth /usr/share/plymouth/themes/<theme_name>/<theme_file>.plymouth <priority>
#其中,<theme_name> 是你下载的主题的名称
#<theme_file>.plymouth 是主题文件的名称
#<priority> 是一个数字,表示主题的优先级,数字越大优先级越高。
4.设置新的主题为默认主题。可以使用以下命令来设置:
sudo update-alternatives --config default.plymouth
#然后选择你希望设置为默认的主题编号。
5.更新 initramfs。使用以下命令来更新:
sudo update-initramfs -u
6.重新启动系统,你将看到新的 Plymouth 主题在启动过程中生效。
另外参考
https://www.cnblogs.com/rookieagle/p/15307208.html