修改Xorg.conf是件简单的事,配置文件结构简单,也没有复杂的语法,但是一但配置失败,后果是比较

严重的,,所以强烈建议每次修改之前做好备份工作。

Xorg.conf一般位于/etc/X11/xorg.conf

包含了你的显卡信息和显示器信息。

===============sample as my config======================

# /etc/X11/xorg.conf (xorg X Window System server configuration file)

#

# This file was generated by dexconf, the Debian X Configuration tool, using

# values from the debconf database.

#

# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.

# (Type "man /etc/X11/xorg.conf" at the shell prompt.)

#

# This file is automatically updated on xserver-xorg package upgrades *only*

# if it has not been modified since the last upgrade of the xserver-xorg

# package.

#

# If you have edited this file but would like it to be automatically updated

# again, run the following command:

#   sudo dpkg-reconfigure -phigh xserver-xorg

//带#的是注释掉的行,不用管。 //

Section "Files"

        FontPath        "/usr/share/X11/fonts/misc"

        FontPath        "/usr/share/X11/fonts/cyrillic"

        FontPath        "/usr/share/X11/fonts/100dpi/:unscaled"

        FontPath        "/usr/share/X11/fonts/75dpi/:unscaled"

        FontPath        "/usr/share/X11/fonts/Type1"

        FontPath        "/usr/share/X11/fonts/CID"

        FontPath        "/usr/share/X11/fonts/100dpi"

        FontPath        "/usr/share/X11/fonts/75dpi"

        # paths to defoma fonts

        FontPath        "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"

        FontPath        "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"

EndSection

//一段一段的用Section & EndSection隔开,上面是定义一些文件的路径 //









Section "Module"

#       Load    "GLcore"//这行

        Load    "i2c"

        Load    "bitmap"

        Load    "ddc"

#       Load    "dri"   //还有这行,是我装显卡驱动时注释掉的

        Load    "extmod"

        Load    "freetype"

        Load    "glx"   //这行是加上的,有些记不清了,不过装好了以后就可以打quake了

        Load    "int10"

        Load    "type1"

        Load    "vbe"

EndSection

//Module,顾名思意,模块,加载很多种模块,当你为你的显卡装驱动的时候,你会修改这些东西

的,修改完毕且正确,那么你就可以享受同windows系统下一样的显卡速度了。 //









Section "InputDevice"

        Identifier      "Generic Keyboard"

        Driver          "kbd"

        Option          "CoreKeyboard"

        Option          "XkbRules"      "xorg"

        Option          "XkbModel"      "pc104"

        Option          "XkbLayout"     "us"

EndSection

//键盘,显然,你不用修改这里,never,除非你的旧键盘坏了,而且你想换一块与众不同的新键盘。 //













Section "InputDevice"

        Identifier      "Configured Mouse"

        Driver          "mouse"

        Option          "CorePointer"

        Option          "Device"                "/dev/input/mice"

        Option          "Protocol"              "ImPS/2"

        Option          "Emulate3Buttons"       "true"

        Option          "ZAxisMapping"          "4 5"

EndSection

//鼠标,同上,不过,罗技的鼠标在这里也发挥不了用武之地,因为这里没有cs。 //









Section "Device"

        Identifier      "NVIDIA Corporation NVCrush11 [GeForce2 MX Integrated Graphics]"

        Driver          "nvidia"

        BusID           "PCI:2:0:0"

EndSection

//显卡,这个是非常重要的一部分,虽然只有三行,但是显示的性能基本都在这里体现,只修改这

里是没有用的,你必须做相应的修改,针对你的显卡和系统,搜一下网上的文章,你会搞定他的。 //









Section "Monitor"

        Identifier      "Philips 105S"//只是一个名字,但是改了看起来更好一些

        Option          "DPMS"        //让能源之星见鬼去吧,注释掉,如果你愿意

        HorizSync       30-63         //这两行改之前请查阅你显示器的型号,根据

        VertRefresh     50-120        //参数做出相应修改, 不要写反! //

EndSection

//显示器,困扰了我许久的问题,因为xorg对我早年的伤害,我一直不敢轻易尝试修改这个文件,

到最后我下定决心改这个时,很轻松就搞定了。而且付出了很小的代价(两次死机,恩,很小的代价。)//









Section "Screen"

        Identifier      "Default Screen"// //这行 //

        Device          "NVIDIA Corporation NVCrush11 [GeForce2 MX Integrated Graphics]"

        Monitor         "Philips 105S" // //到这行 //往上面找,找到相关的,注意大小写

        DefaultDepth    16              //一般这里是24,我的比较老。。。

        SubSection "Display"

                Depth           1

                Modes           "1024x768" "800x600" "640x480"

        EndSubSection

        SubSection "Display"

                Depth           4

                Modes           "1024x768" "800x600" "640x480"

        EndSubSection

        SubSection "Display"

                Depth           8

                Modes           "1024x768" "800x600" "640x480"

        EndSubSection

        SubSection "Display"

                Depth           15

                Modes           "1024x768" "800x600" "640x480"

        EndSubSection

        SubSection "Display"

                Depth           16

                Modes           "1024x768" "800x600" "640x480"

        EndSubSection

        SubSection "Display"

                Depth           24

                Modes           "1024x768" "800x600" "640x480"

        EndSubSection

EndSection

//剩下的就不要改了!自动检测的会很好的。如果改,请确认你知道你在做什么。 //





Section "ServerLayout"

        Identifier      "Default Layout"

        Screen          "Default Screen"

        InputDevice     "Generic Keyboard"

        InputDevice     "Configured Mouse"

EndSection

Section "DRI"

        Mode    0666

EndSection

修改Xorg.conf配置显示分辨率的更多相关文章

  1. nginx修改nginx.conf配置可以https访问

    修改nginx.conf,参照如下更改配置server { listen 443; server_name abc.com; // 访问域名 ssl on; root /var/www/bjubi.c ...

  2. 红帽企业版RHEL7.1在研域工控板上,开机没有登陆窗口 -- 编写xorg.conf 简单三行解决Ubuntu分辩率不可调的问题

    红帽企业版RHEL7.1在研域工控板上,开机没有登陆窗口 没有登陆窗口 的原因分析: 没有登陆窗口的原因是因为有多个屏幕在工作,其中一个就是build-in 屏幕(内置的虚拟屏幕)和外接的显示器,并且 ...

  3. 网卡配置和DNS配置,手动挂在nas存储的共享目录,网络相关其它操作命令,修改防火墙中的端口配置,resolv.conf配置详细介绍和网卡信息配置详细介绍

    1.   网卡配置和DNS配置 若想服务器能够发邮件,需要让部署的服务器能够访问到外网环境.若部署的服务器访问不到外网,通过ping www.baidu.com的方式执行的时候,会出现以下问题: &q ...

  4. redis.conf 配置信息:读取及修改命令

    相关资源 网址 官方地址(网页中 Command + F,输入井号"#",方便查看没有注释的行) http://download.redis.io/redis-stable/red ...

  5. apache 虚拟主机详细配置:http.conf配置详解

    apache 虚拟主机详细配置:http.conf配置详解 Apache的配置文件http.conf参数含义详解 Apache的配置由httpd.conf文件配置,因此下面的配置指令都是在httpd. ...

  6. wamp修改多站点配置

    本文介绍如果在wamp中修改配置支持多站点. 第1步,修改httpd.conf,增加8080端口的监听 #Listen 12.34.56.78:80Listen 80Listen 8080 第2步,修 ...

  7. linux下Nginx配置文件(nginx.conf)配置设置详解(windows用phpstudy集成)

    linux备份nginx.conf文件举例: cp /usr/local/nginx/nginx.conf /usr/local/nginx/nginx.conf-20171111(日期) 在进程列表 ...

  8. 长连接锁服务优化实践 C10K问题 nodejs的内部构造 limits.conf文件修改 sysctl.conf文件修改

    小结: 1. 当文件句柄数目超过 10 之后,epoll 性能将优于 select 和 poll:当文件句柄数目达到 10K 的时候,epoll 已经超过 select 和 poll 两个数量级. 2 ...

  9. Eclipse修改Maven仓库配置

    修改Apache-Maven\conf下的settings.xml文件 <?xml version="1.0" encoding="UTF-8"?> ...

随机推荐

  1. luogu2765 魔术球问题 网络流

    题目大意: 假设有n根柱子,现要按下述规则在这n根柱子中依次放入编号为1,2,3,...的球.(1)每次只能在某根柱子的最上面放球.(2)在同一根柱子中,任何2个相邻球的编号之和为完全平方数.试设计一 ...

  2. Android+Jquery Mobile学习系列(9)-总结和代码分享

    经过一个多月的边学习边练手,学会了Android基于Web开发的毛皮,其实开发过程中用Android原生API不是很多,更多的是HTML/Javascript/Css. 个人觉得基于WebView的J ...

  3. 格伦布编码——rice编码无非是golomb编码M为2^x的特例

    格伦布编码 格伦布编码是一种无失真资料压缩方法,由数学家所罗门·格伦布在1960年代提出. Rice编码 Robert F. Rice提出Rice 编码,是以哥伦布编码为基础做改良而更简易的前置码.R ...

  4. 【POJ 1456】 Supermarket

    [题目链接] http://poj.org/problem?id=1456 [算法] 贪心 + 堆 [代码] #include <algorithm> #include <bitse ...

  5. bzoj3033 太鼓达人——欧拉图搜索

    题目:https://www.lydsy.com/JudgeOnline/problem.php?id=3033 考虑那 (1<<k) 个数,要形成答案,必然是相邻两个数间有 k-1 个重 ...

  6. 第7章 Android中访问网络资源

    http://developer.android.com/index.html->https://developer.android.com/index.html https://develop ...

  7. js定义类和方法

    js中定义一个类 //定义一个user类 var user = function(){ //类中的属性 var age; //设置age的值 var setAge = function(age){ t ...

  8. VBA 字符串处理函数集

    转自:http://blog.csdn.net/jyh_jack/article/details/2315345 mid(字符串,从第几个开始,长度)  在[字符串]中[从第几个开始]取出[长度个字符 ...

  9. Appium + python - 监控appium server start

    import osimport time as t def start_appium(port = 4723,udid="4871660c"): a = os.popen(&quo ...

  10. set statistics profile on实例

    set statistics profile on实例 1.SQL语句实例   SQL 代码   复制 SET STATISTICS PROFILE ON GO SELECT COUNT(b.[Sal ...