Answers:
Raspberry Pi(Raspbian)的自定义启动屏幕
对于启动过程中未设置动画的自定义启动屏幕,这是一种快速而肮脏的解决方案。
首先,您需要安装fbi:
apt-get install fbi
将您的自定义启动图像复制到/ etc /,并将其命名为“ splash.png”。
接下来,在“ /etc/init.d/”中创建一个名为“ asplashscreen”的init.d脚本。
我在开始时选择了带有“ a”的“ asplashscreen”,以确保它首先开始。
#! /bin/sh
### BEGIN INIT INFO
# Provides: asplashscreen
# Required-Start:
# Required-Stop:
# Should-Start:
# Default-Start: S
# Default-Stop:
# Short-Description: Show custom splashscreen
# Description: Show custom splashscreen
### END INIT INFO
do_start () {
/usr/bin/fbi -T 1 -noverbose -a /etc/splash.png
exit 0
}
case "$1" in
start|"")
do_start
;;
restart|reload|force-reload)
echo "Error: argument '$1' not supported" >&2
exit 3
;;
stop)
# No-op
;;
status)
exit 0
;;
*)
echo "Usage: asplashscreen [start|stop]" >&2
exit 3
;;
esac
:
然后使该脚本可执行,并以init模式rcS安装它:
chmod a+x /etc/init.d/asplashscreen
insserv /etc/init.d/asplashscreen
重新启动并观看您的自定义启动屏幕:
reboot
您可以看一下Splashy,以创建一个自定义加载(Splash)屏幕。
我在官方软件包列表中看不到它,因此您必须从源代码进行编译。git
从这里可以通过获得。
您应该能够签出源代码并进行如下构建:
git clone https://anonscm.debian.org/git/splashy/splashy.git
cd splashy
./configure
make && sudo make install
乍一看,我希望它不会有任何问题。然后,您可以按照README
提供的源代码(或在此处在线获取)进行安装配置过程。
make
生成可执行文件。make install
安装可执行文件,通常只需将其复制到适当的目录即可。
README
包含了所有的信息。
这是Raspbian发行版中自定义启动的可行解决方案。http://www.edv-huber.com/index.php/problemloesungen/15-custom-splash-screen-for-raspberry-pi-raspbian