Chinaunix首页 | 论坛 | 博客
  • 博客访问: 117712
  • 博文数量: 13
  • 博客积分: 1400
  • 博客等级: 上尉
  • 技术积分: 140
  • 用 户 组: 普通用户
  • 注册时间: 2007-12-13 15:27
文章分类

全部博文(13)

文章存档

2011年(1)

2008年(9)

2007年(3)

我的朋友

分类: LINUX

2008-03-29 15:35:51

问题描述:linux登陆前后分辨率不一致,登陆前分辨率高,登陆后正常。两台显卡一样的机器遇到同样的问题,但解决办法不同。
解决办法:修改/etc/x11/xorg.conf文件。
1、现将机器1的xorg.conf的文件列出:
.......
Section "Monitor"
 ### Comment all HorizSync and VertSync values to use DDC:
 Identifier   "Monitor0"
 ModelName    "Monitor 1024x768"
 ### Comment all HorizSync and VertSync values to use DDC:
 HorizSync    31.5 - 57.0
 VertRefresh  50.0 - 70.0
 Option     "dpms"
EndSection
Section "Device"
 Identifier  "Videocard0"
 Driver      "i810"
EndSection
Section "Screen"
 Identifier "Screen0"
 Device     "Videocard0"
 Monitor    "Monitor0"
 DefaultDepth     24
 SubSection "Display"
  Modes "1024x768"
  Viewport   0 0
  Depth     24
 EndSubSection
EndSection
由于此文件中缺少红色部分,导致以上问题,可在文件中加入此句,便可解决。
2、现将机器2的xorg.conf的文件列出:
Section "Monitor"
 ### Comment all HorizSync and VertSync values to use DDC:
 ### Comment all HorizSync and VertSync values to use DDC:
 Identifier   "Monitor0"
 ModelName    "Monitor 1024x768"
 ### Comment all HorizSync and VertSync values to use DDC:
 HorizSync    31.5 - 57.0
 VertRefresh  50.0 - 70.0
 #ModeLine     "1024x768_75.00" 81.8 1024 1080 1192 1360 768 769 772 802 -hsync +vsync
 Option     "dpms"
EndSection
Section "Device"
 Identifier  "Videocard0"
 Driver      "i810"
EndSection
Section "Screen"
 Identifier "Screen0"
 Device     "Videocard0"
 Monitor    "Monitor0"
 DefaultDepth     24
 SubSection "Display"
  Modes     "1024x768"
  Viewport   0 0
  Depth     24
 EndSubSection
EndSection
由于此文件中多了红色部分,导致以上问题,可在文件中注释掉此句,便可解决。
 
阅读(875) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~