26 lines
546 B
Markdown
26 lines
546 B
Markdown
|
# Plymouth 说明
|
||
|
|
||
|
系统开机主题存储在:/usr/share/plymouth/themes 路径下。
|
||
|
|
||
|
配置选择在:/etc/alternatives 下,主要有:
|
||
|
|
||
|
1. /etc/alternatives/default.plymouth.grub
|
||
|
2. /etc/alternatives/default.plymouth
|
||
|
3. /etc/alternatives/text.plymouth
|
||
|
|
||
|
使用如下命令安装 Plymouth 主题:
|
||
|
|
||
|
```bash
|
||
|
# Ubuntu
|
||
|
sudo apt-get install plymouth-theme-*
|
||
|
```
|
||
|
|
||
|
## 修改开机 Logo
|
||
|
|
||
|
```bash
|
||
|
# 选择开机主题
|
||
|
sudo update-alternatives --config default.plymouth
|
||
|
# 初始 initramfs, 应用开机主题变更.
|
||
|
sudo update-initramfs -u
|
||
|
```
|