Linux开机logo设置
本文介绍Linux开机logo设置。
常用的Linux开机logo设置工具有fbi(Linux Framebuffer Imageviewer),plymouth等,本文针对fbi工具进行开机logo设置。
1.fbi工具安装
命令行下,输入:
sudo apt-get install fbi -y
安装完毕后,可在控制台界面下进行测试,提前准备一张屏幕分辨率大小的logo,输入如下指令:
fbi -d /dev/fb0 --noverbose -a /your/path/splash.png
图片路径自行指定,如果界面有输出,说明安装成功。
2.开机启动服务
1)编写
要让开机启动过程中输出logo,需要编写开机启动程序,在Linux系统中就是服务的编写。输入如下命令:
sudo nano /lib/systemd/system/splashscreen.service
输入如下内容:
[Unit]
Description=splashscreen
DefaultDependencies=no
After=basic.target
[Service]
ExecStart=/usr/bin/fbi -d /dev/fb0 --noverbose -a /etc/splash.png
Restart=always
StandardInput=tty
StandardOutput=tty
[Install]
WantedBy=sysinit.target
这里的logo(屏幕分辨率大小)路径设置为“/etc/”目录,可根据实际情况设定。
2)开机启动生效
输入如下指令:
sudo systemctl daemon-reload
sudo systemctl start splashscreen
sudo systemctl enable splashscreen
查看服务是否启动,可通过如下指令:
sudo systemctl status splashscreen
以上完成后,重启即可看到开机logo。
总结,本文介绍了Linux开机logo设置。