|
今天买了Philips的190S7,回到家发现在ubuntu下只能识别到1024X768的分辨率,即使用dpkg-reconfigure重新设置了xserver,令其选中1280X1024的选项也不行,于是经网上一番搜索,经自己尝试后,终于让显示器的分辨率正常,将自己的心得拿出来与大家分享一下。
[color="Blue"]我的系统内核为2.6.15-26-386,x的版本是7.0.0-0ubuntu45
1、首先说一下水平和垂直刷新率的问题,我看到有些资料提到,对于液晶显示器,两个刷新率应该都设置为0-0,经实践发现不可行,这样设置直接导致X启动不了,我的做法是注释掉水平和垂直刷新率设置的两行,让X自动设置。
2、设置好刷新率后重启发现linux提示找不到screen,这个比较让人费解,后来在网上看到有人提到在Screen段加上这一句:,然后就可以正常启动。
下面帖一下我的xorg.conf(太长了,给出关键部分,方便兄弟们查看 )
1、首先是显卡,我用的ATI的镭。各位因人而异,按照自己的设置正确就行- Section "Device"
- Identifier "ATI Technologies, Inc. RV350 NP [Mobility Radeon 9600/9700 M10/M11]"
- Driver "ati"
- BusID "PCI:1:0:0"
- EndSection
复制代码
2、其次是显示器部分,注意,HorizSync和VertRefresh都被注释掉了- Section "Monitor"
- Identifier "LCD"
- Option "DPMS"
- # HorizSync 24-48
- # VertRefresh 30-60
- EndSection
复制代码
3、最后是显示模式,这里加了Viewport 0 0这一句- Section "Screen"
- Identifier "Default Screen"
- Device "ATI Technologies, Inc. RV350 NP [Mobility Radeon 9600/9700 M10/M11]"
- Monitor "LCD"
- DefaultDepth 24
- DefaultFbBpp 32
- SubSection "Display"
- Viewport 0 0
- Depth 24
- Modes "1280x1024"
- EndSubSection
- SubSection "Display"
- Depth 1
- Modes "1280x1024" "1024x768" "800x600" "640x480"
- EndSubSection
- SubSection "Display"
- Depth 4
- Modes "1280x1024" "1024x768" "800x600" "640x480"
- EndSubSection
- SubSection "Display"
- Depth 8
- Modes "1280x1024" "1024x768" "800x600" "640x480"
- EndSubSection
- SubSection "Display"
- Depth 15
- Modes "1280x1024" "1024x768" "800x600" "640x480"
- EndSubSection
- SubSection "Display"
- Depth 16
- Modes "1280x1024" "1024x768" "800x600" "640x480"
- EndSubSection
- SubSection "Display"
- Depth 24
- Modes "1280x1024" "1024x768" "800x600" "640x480"
- EndSubSection
- EndSection
复制代码
最后帖一张桌面效果图吧
希望这些经验对大家能有帮助,呵呵。 |
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?注册
x
|