标签:ubuntu14.04
$ cat /lib/plymouth/themes/ubuntu-logo/ubuntu-logo.grub if background_color 44,0,30; then clear fi should be $ cat /lib/plymouth/themes/ubuntu-logo/ubuntu-logo.grub if ! background_color 44,0,30; then clear fi然后update-grup
可以参考这里进行调整,我之前试过,确实有用,不过关机画面还是有点问题;
不过,我觉得没有必要每一步都做,下面是我的方法:
直接修改开机时的分辨率:
sudo vim /etc/default/grub
在文件里面找到如下部分:
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo‘
# GRUB_GFXMODE=640x480
在之后加入:
GRUB_GFXMODE=1360x768
GRUB_GFXPAYLOAD_LINUX=keep
最后更新一下grub,
sudo update-grub2
关于查看自己显示器支持的分辨率,可以在开机grub出现时,按下c进入命令行,然后输入vbeinfo即可查看
参考链接 http://www.cnblogs.com/Jack-Lee/p/3705612.html标签:ubuntu14.04
原文地址:http://blog.csdn.net/sjin_1314/article/details/41743845