zoukankan      html  css  js  c++  java
  • 修改/etc/X11/xorg.conf 调整分辨率为1024 768

    [root@vitural-linux ~]# gedit /etc/X11/xorg.conf

    将其中的screen添加一行   Virtual 1024 768 (其中1024 768可以为任何你想要的分辨率)
    以我的计算机为例:
    修改前:
    Section "Screen"
        Identifier "Screen0"
        Device     "Videocard0"
        DefaultDepth     24
        SubSection "Display"
            Viewport   0 0
            Depth     24
        EndSubSection
    修改后
    Section "Screen"
        Identifier "Screen0"
        Device     "Videocard0"
        DefaultDepth     24
        SubSection "Display"
            Viewport   0 0
          Virtual 1024 768
            Depth     24
        EndSubSection

    修改完后保存修改,注销,再次进入图形界面后就可以在
    分辨率设置中找到新添加的1024 768选项,选择它,点确定就可以了!

    http://www.zouqingshui.net/

    
  • 相关阅读:
    面试题库
    集合的交、查、并
    mysql_server安装
    maven构建jar包
    Centos7下 升级php5.4到7.1 yum安装
    redis
    常见shell用法
    Mac下的LDAP客户端 ApacheDirectoryStudio
    redis弱密码漏洞利用
    Freeradius+Cisco2500AC+OpenLdap认证
  • 原文地址:https://www.cnblogs.com/chinacloud/p/1977406.html
Copyright © 2011-2022 走看看