linux boot splash plymouth logging

linux boot splash plymouth logging

我想从 plymouth-0.8.8 源代码创建我的引导启动主题。 我通过以下步骤构建了普利茅斯源流:

# ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --enable-tracing
# make && make install

之后,我用这样的初始化文件创建了 initrd:

[
...
printf '3[?25l' > /dev/tty7
/sbin/plymouthd --mode=boot --attach-to-session --pid-file=/run/initramfs/plymouth.pid --debug
/bin/plymouth show-splash
...
]

启动完成后,我想查看 plymouth 的日志文件,但我看不到。

请建议我如何配置 plymouth 将日志写入文件。

Ubuntu Wiki 说它应该默认登录 /var/log/boot.log,但你必须告诉它该目录是可写的 plymouth update-root-fs --read-write