Fedora 16 安装显卡驱动后恢复原有的图形启动画面

  Fedora 16 在安装完显卡驱动后,开机时的启动画面会变回蓝白色进度条,而不显示原来的 fedora 图形 Logo。其实在发上一篇安装驱动的日志时,我已找到了解决办法,因为考虑出处不同,所以没有并在一起。

  方法来自于 FedoraForum.org 的讨论结果,有两种有效方法可以还原为 Fedora 16 启动时原有的图形 splash 画面。

方法一:

  编辑 /etc/default/grub 这个文件,在其中加上下面两行:

GRUB_GFXMODE=1600x1200x24
GRUB_GFXPAYLOAD_LINUX=1600x1200x24Code language: Bash (bash)

  “1600×1200”是你的显示分辨率,根据自己的情况修改,不一定和你进入桌面时的最佳分辨率一致。比如你桌面的最佳分辨率为“1900×1200”,但可能只有在设置为“1600×1200”时才能有 plymouth splash。后面的“24”自然是指色彩了,也可以不指定(有时候指定了反而不行)。

  然后执行:

sudo grub2-mkconfig -o /boot/grub2/grub.cfgCode language: Bash (bash)

  如果你没有开启 sudo,则需要先用 su 切换为 root 用户。

方法二:

  同样编辑 /etc/default/grub 这个文件,在 GRUB_CMDLINE_LINUX 这一行中添加 splash vga=xxx 参数,例如:

GRUB_CMDLINE_LINUX="rd.md=0 rd.lvm=0 rd.dm=0  KEYTABLE=us quiet splash vga=0x0361 SYSFONT=latarcyrheb-sun16 rhgb rd.luks=0 LANG=en_US.UTF-8"Code language: Bash (bash)

  关于“vga=”后面的数值与对应的显示模式可以参考:

Mode 0x0300: 640x400 (+640), 8 bits
Mode 0x0301: 640x480 (+640), 8 bits
Mode 0x0303: 800x600 (+800), 8 bits
Mode 0x0305: 1024x768 (+1024), 8 bits
Mode 0x0307: 1280x1024 (+1280), 8 bits
Mode 0x030e: 320x200 (+640), 16 bits
Mode 0x030f: 320x200 (+1280), 24 bits
Mode 0x0311: 640x480 (+1280), 16 bits
Mode 0x0312: 640x480 (+2560), 24 bits
Mode 0x0314: 800x600 (+1600), 16 bits
Mode 0x0315: 800x600 (+3200), 24 bits
Mode 0x0317: 1024x768 (+2048), 16 bits
Mode 0x0318: 1024x768 (+4096), 24 bits
Mode 0x031a: 1280x1024 (+2560), 16 bits
Mode 0x031b: 1280x1024 (+5120), 24 bits
Mode 0x0330: 320x200 (+320), 8 bits
Mode 0x0331: 320x400 (+320), 8 bits
Mode 0x0332: 320x400 (+640), 16 bits
Mode 0x0333: 320x400 (+1280), 24 bits
Mode 0x0334: 320x240 (+320), 8 bits
Mode 0x0335: 320x240 (+640), 16 bits
Mode 0x0336: 320x240 (+1280), 24 bits
Mode 0x033d: 640x400 (+1280), 16 bits
Mode 0x033e: 640x400 (+2560), 24 bits
Mode 0x0345: 1600x1200 (+1600), 8 bits
Mode 0x0346: 1600x1200 (+3200), 16 bits
Mode 0x0347: 1400x1050 (+1400), 8 bits
Mode 0x0348: 1400x1050 (+2800), 16 bits
Mode 0x0349: 1400x1050 (+5600), 24 bits
Mode 0x034a: 1600x1200 (+6400), 24 bits
Mode 0x0352: 2048x1536 (+8192), 24 bits
Mode 0x0360: 1280x800 (+1280), 8 bits
Mode 0x0361: 1280x800 (+5120), 24 bits
Mode 0x0362: 768x480 (+768), 8 bits
Mode 0x0364: 1440x900 (+1440), 8 bits
Mode 0x0365: 1440x900 (+5760), 24 bits
Mode 0x0368: 1680x1050 (+1680), 8 bits
Mode 0x0369: 1680x1050 (+6720), 24 bits
Mode 0x037c: 1920x1200 (+1920), 8 bits
Mode 0x037d: 1920x1200 (+7680), 24 bitsCode language: Bash (bash)

  同样:

sudo grub2-mkconfig -o /boot/grub2/grub.cfgCode language: Bash (bash)

6 thoughts on “Fedora 16 安装显卡驱动后恢复原有的图形启动画面

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注