Blame

bc8e5e Anonymous 2026-01-31 02:49:20 1
# Plymouth
2
3
===== plymouth =====
4
5
Plymouth is an application that runs very early in the boot process (even before the root filesystem is mounted!) that provides a graphical boot animation while the boot process happens in the background.
6
7
you can install plymouth on slackware from [[https://slackbuilds.org/repository/15.0/system/plymouth/?search=plymouth|plymouth]] for which i use [[sbotools]] which is at [[https://slackbuilds.org/repository/15.0/system/sbotools/|sbotools]]
8
9
once plymouth is installed
10
11
edit /etc/dracut.conf.d/myflags.conf and add this line
12
<code>add_dracutmodules+=" plymouth "</code>
13
14
edit your /etc/default/grub to include
15
<code>GRUB_CMDLINE_LINUX_DEFAULT="splash"</code>
16
17
themes are in /usr/share/plymouth/themes
18
19
to view available themes
20
<code>plymouth-set-default-theme -l</code>
21
22
to set the theme
23
<code>plymouth-set-default-theme solar</code>
24
25
<code>dracut --list-modules</code>
26
27
load plymouth module
28
<code>dracut --add-drivers plymouth</code>
29
30
build new initrd
31
<code>dracut --force /boot/initrd-<kernel-version>.img</code>
32
33
34
update your bootloader to use the new initrd. i use grub2
35
<code>grub-mkconfig -o /boot/grub/grub.cfg</code>