码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu14.04系统设置

时间:2014-12-05 10:54:04      阅读:479      评论:0      收藏:0      [点我收藏+]

标签:ubuntu14.04

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

       
$ 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系统设置

标签:ubuntu14.04

原文地址:http://blog.csdn.net/sjin_1314/article/details/41743845

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!