您的位置:首页 > 其它

Ubuntu14.04系统设置

2014-12-05 10:07 253 查看

1、开机画面紫框问题修复

参考文章:https://bugs.launchpad.net/ubuntu/+source/plymouth/+bug/1289809       
$ 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

2、.启动画面中出现命令行

可以参考这里进行调整,我之前试过,确实有用,不过关机画面还是有点问题;不过,我觉得没有必要每一步都做,下面是我的方法:直接修改开机时的分辨率:
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