CachyOS使用多个显示器无法开机,一直黑屏等待卡死在Plymouth界面无法登录
2025-11-25 11:01:01 # 技术

CachyOS使用多个显示器无法开机,一直黑屏等待,卡死在Plymouth界面,只显示转圈图标,无法登录。折腾了很久,最终在跳转Plymouth界面之前,按 esc 发现了系统启动日志:

1
2
[FAILED] Failed to start Terminate Plymouth Boot screen.
See 'systemctl status plymouth-guit.service' for details.
1
[*     ] A start job is running for Hold until boot process finishes up (1min 34s / no limit)

Plymouth就是CachyOS开机显示logo的程序,就是因为它导致的,这个问题在社区内已经存在很久了,方法参考:[Tutorial] Disable or Remove Plymouth (boot splash)

修改 systemd-boot 启动配置文件:

1
sudo nano /etc/sdboot-manage.conf

找到下面 LINUX_OPTIONS 这行:

1
2
# Kernel options to be appended to the "options" line
LINUX_OPTIONS="zswap.enabled=0 nowatchdog splash"

把:

1
splash

替换为:

1
plymouth.enable=0 disablehooks=plymouth

更新并应用配置文件

1
sudo sdboot-manage gen

现在关闭了开启过程中的logo特效,虽然少了点什么,但开机速度也更快了,值得。