紫岩

紫岩
posts - 3, comments - 1, trackbacks - 0, articles - 8
  IT博客 :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理

修改显示器分辨率 800*600->1024*768

Posted on 2007-06-13 19:42 紫岩 阅读(548) 评论(0)  编辑 收藏 引用 所属分类: linux入门文摘
 
安装完RedHat9.0后分辨率为800*600,显示器为未识别的.

从 系统设置--显示中修改,重启无法实现目的.

先在 显示 中把 HorizSync 31.5 - 60.0      VertRefresh   50.0 - 80.0 修改,

然后修改:/etc/X11/XF86Config (vi /etc/X11/XF86Config)

把Section "Screen"
       Identifier "Screen0"
       Device     "Videocard0"
       Monitor "Monitor0"
       DefaultDepth     24
       SubSection "Display"
            Depth     24
            Modes "800x600" "640x480"
       EndSubSection
EndSection

改为

Section "Screen"
       Identifier "Screen0"
       Device     "Videocard0"
       Monitor "Monitor0"
       DefaultDepth     16
       SubSection "Display"
            Depth     16
            Modes "1024x768"
       EndSubSection
EndSection

然后保存、退出、重启。

参考:http://www.linuxdiyf.com/bbs/viewthread.php?tid=23617&extra=&page=2
只有注册用户登录后才能发表评论。