zoukankan      html  css  js  c++  java
  • 解决ubuntu13.10的分辨率问题

    来自:http://blog.csdn.net/lxnkobe/article/details/18078127?reload

    经常会遇到刚安装的系统没有自己需要的分辨率模式,一般不是驱动的问题,可能是因为显示器某些信息不标准,看了不少设置方法,有的说修改/etc/x11/xorg.conf ,这里说一种不许要修改文件的方法。

    1.cvt  1360 768 60  

    # 1368x768 59.88 Hz (CVT) hsync: 47.79 kHz; pclk: 85.25 MHz
    Modeline "1368x768_60.00"   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync

    具体分辨率可以自己设置

    2.xrandr --newmode "1368x768_60.00"   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync

    红色部分和第一步中的一样,这时候使用xrandr 查看产生一个未连接的VIRTUAL1

    xrandr

    VIRTUAL1 disconnected
      1368x768_60.00 (0x297)   85.2MHz
            h: width  1368 start 1440 end 1576 total 1784 skew    0 clock   47.8KHz
            v: height  768 start  771 end  781 total  798           clock   59.9Hz

    然后:sudo xrandr --addmode VIRTUAL2 1368x768_60.00  

    添加了一个自己的模式,如下图,红色的是系统默认的显示模式(名字是VGA1  输入xrandr 可以看到 ),其他的是添加的显示模式



      但是发现一个问题,选择图片中自己添加的模式,里面有刚设置的分辨率,但是应用之后,发现分辨率没有明显的变化

    然后把这个分辨率模式添加到系统默认的VGA1中:

     sudo xrandr --addmode VGA1 1368x768_60.00

    这时候VGA1中也有了此分辨率,选择后,发现分辨率变成自己想要的模式了。

    安装xfce 4.X  

    链接:http://linuxg.net/how-to-install-xfce-4-12-on-ubuntu-13-10-ubuntu-13-04-ubuntu-12-10-and-ubuntu-12-04/

    In order to successfully install XFCE 4.12 on the latest Ubuntu systems available, we have to add both the PPAs for XFCE 4.10 and XFCE 4.12 to avoid depencency issues, update the local repository index and install the xfce4 package. Like this:

    $ sudo add-apt-repository ppa:xubuntu-dev/xfce-4.10
    $ sudo add-apt-repository ppa:xubuntu-dev/xfce-4.12
    $ sudo apt-get update
    $ sudo apt-get install xfce4

     

    If you already have a previous version of XFCE installed, add the two ppas and perform a system upgrade:

    $ sudo add-apt-repository ppa:xubuntu-dev/xfce-4.10
    $ sudo add-apt-repository ppa:xubuntu-dev/xfce-4.12
    $ sudo apt-get update
    $ sudo apt-get dist-upgrade

  • 相关阅读:
    Kafka sender消息生产者
    springboot--websocket简单demo(一):session chat
    IDE引入mindmap插件,在项目中添加思维导图
    Redis启动命令
    Failure to find com.oracle:ojdbc6:jar:11.2.0.1.0
    Java秒杀系统实战系列~构建SpringBoot多模块项目
    利用java多线程技术往Elasticsearch导入千亿级数据
    list遍历陷阱分析原理
    Storm框架最显著的应用
    Apache Storm Trident
  • 原文地址:https://www.cnblogs.com/gaodong/p/3603050.html
Copyright © 2011-2022 走看看