歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux教程 >> Ubuntu 9.04使用xorg-edgers來解決ATI X1600顯卡問題

Ubuntu 9.04使用xorg-edgers來解決ATI X1600顯卡問題

日期:2017/2/28 16:43:00   编辑:Linux教程

AMD/ATI的老卡驅動在新xorg上一直是一個大問題,ATI對這些老卡(其實真的老嗎?)不再提供驅動了,對很多ATI卡的用戶來說,Linux不是一個很好玩的東西了...不說廢話了,升級合適的驅動,不能靠ATI!

我的機器是Thinkpad T60,顯卡為ATI Mobility Radeon X1300,裝入Ubuntu 9.04後,只能用Ubuntu的初始驅動,無法安裝Catalyst 9.3,屏幕右側會出現閃爍等,浏覽Ubuntu論壇時發現了xorg-edgers fresh X crack, 更新後居然穩定了,再無閃爍,mplayer 使用X11/Xv再無問題,顯卡溫度為51度左右,glxgears原來是6000以下,現為:

6393 frames in 5.0 seconds = 1278.545 FPS
6238 frames in 5.0 seconds = 1247.568 FPS
6339 frames in 5.0 seconds = 1267.781 FPS
6510 frames in 5.0 seconds = 1301.839 FPS
6483 frames in 5.0 seconds = 1296.592 FPS
6499 frames in 5.0 seconds = 1299.715 FPS

更新如下:

xorg-edgers
驅動介紹在 https://launchpad.net/~xorg-edgers/+archive/ppa ,應該也支持其他的老ATI顯卡。

更新方法:
1. 打開 sudo gedit /etc/apt/sources.list
2. 加入
deb http://ppa.launchpad.net/xorg-edgers/ppa/ubuntu jaunty main
deb-src http://ppa.launchpad.net/xorg-edgers/ppa/ubuntu jaunty main
3. 加入密匙 sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 8844C542
4. sudo apt-get update
5. sudo apt-get dist-upgrade

重啟X.

注: 這個會更新Unbuntu原帶的xserver-xorg-video-ati 等驅動.

設置外接顯示器
外接了一個顯示器,設置為1280x1024,我的xorg.conf如下:

Section "Monitor"
Identifier "Configured Monitor"
EndSection

Section "Monitor"
Identifier "LG Monitor"
Modeline "1280x1024_70.00" 128.94 1280 1368 1504 1728 1024 1025 1028 1066 -HSync +Vsync
EndSection

Section "Screen"
Identifier "Default Screen"
# Monitor "Configured Monitor"
Monitor "LG Monitor"
Device "Configured Video Device"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600"
Virtual 1280 1792
EndSubSection
EndSection

Section "Device"
Identifier "Configured Video Device"
EndSection

按介紹xorg-edgers應該也解決了3D的問題,有成功的朋友請也上來說一下!

Copyright © Linux教程網 All Rights Reserved