|
我只是在/etc/X11/xorg.conf里改了(在Text mode登陆,我是从recovery mode进入的)
HorizSync VertRefresh的参数 呵呵
你的参数可以去http://zol.com.cn查查
然后重启登陆后 进入Gnome 查看一下刷新率 就自动改为1024 768 85Hz了
我使用的Ubuntu 而Ubuntu使用XWindow是Gnome+Xorg
各位跟我差不多的 可以稍微改一下 就可以了
我对这的初步的理解是 改HorizSync VertRefresh
实际上就是告诉XServer 我的显示器是支持1024 768 85Hz
而有些老的显示器却无法支持的 强制改会导致无法显示了 不过这不会crash掉系统 呵呵
而后 我去看了看Xorg.conf
发现 有些是XWindow自动改了 呵呵
下面的DefaultDepth 24可能就是代表85Hz吧
16呢 75Hz
有些有这类问题的人试试
- Section "Screen"
- Identifier "Default Screen"
- Device "VIA Technologies, Inc. VT8378 [S3 UniChrome] Integrated Video"
- Monitor "Generic Monitor"
- DefaultDepth 24
- SubSection "Display"
- Depth 1
- Modes "1024x768" "640x480"
- EndSubSection
- SubSection "Display"
- Depth 4
- Modes "1024x768" "640x480"
- EndSubSection
- SubSection "Display"
- Depth 8
- Modes "1024x768" "640x480"
- EndSubSection
- SubSection "Display"
- Depth 15
- Modes "1024x768" "640x480"
- EndSubSection
- SubSection "Display"
- Depth 16
- Modes "1024x768" "640x480"
- EndSubSection
- SubSection "Display"
- Depth 24
- Modes "1024x768" "640x480"
- EndSubSection
- EndSection
复制代码 |
|