Chinaunix首页 | 论坛 | 博客
  • 博客访问: 304906
  • 博文数量: 69
  • 博客积分: 1626
  • 博客等级: 上尉
  • 技术积分: 785
  • 用 户 组: 普通用户
  • 注册时间: 2007-01-15 19:01
文章分类

全部博文(69)

文章存档

2015年(4)

2014年(4)

2013年(3)

2012年(6)

2011年(1)

2010年(16)

2009年(8)

2008年(18)

2007年(9)

我的朋友

分类: LINUX

2007-03-15 23:01:41


hp-500最佳分辨率为 1280x768,但FC6中并没有可选项,需要自己手动设置,方法如下:
1.首先在gnome中显示选项将显示器设置为LCD 1280x800,分辨率1280x800,色深上百万。


2.修改/etc/X11/xorg.conf如下(红色标注部分)


# Xorg configuration created by system-config-display

Section "ServerLayout"
    Identifier     "single head configuration"
    Screen      0  "Screen0" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "ServerFlags"
    Option        "AllowMouseOpenFail" "yes"
EndSection

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
    Option        "XkbModel" "pc105"
    Option        "XkbLayout" "us"
EndSection

Section "Monitor"
    Identifier   "Monitor0"
    ModelName    "LCD Panel 1280x768"
 ### Comment all HorizSync and VertSync values to use DDC:
    HorizSync    31.5 - 90.0
    VertRefresh  60.0 - 60.0
    Option        "dpms"
EndSection

Section "Device"
    Identifier  "Videocard0"
    Driver      "i810"
EndSection

Section "Screen"
    Identifier "Screen0"
    Device     "Videocard0"
    Monitor    "Monitor0"
    DefaultDepth     24
    SubSection "Display"
        Viewport   0 0
        Depth     24
        Modes    "1280x768"
    EndSubSection
EndSection


---------------
3. 915resolution -l 显示 所有可支持分辨率 ,更改其中一个不会用到的分辨律,例如:
    915resolution 5c 1280 768
    再用915resolution -l 显示时发现 5c 处的分辨率变成了 1280x768

4. 为使915resolution在启动X运行,在etc/rc.local 中加入下面一行: 
    /usr/sbin/915resolution 5c 1280 768   32 (其中32为设置的色深,915resolution -l命令时可以看到,如果这个   参数设置太高,显示器到不了,可能重启时分辨率又跳回去了)



阅读(1972) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~