ubuntu 7.04 Feisty Fawn 安装手记之三:安装显卡驱动

参考6.10/7.04下的ati官方驱动安装07/06/01更新

安装驱动
sudo apt-get update
sudo apt-get install linux-restricted-modules-$(uname -r)
sudo apt-get install xorg-driver-fglrx fglrx-control
sudo depmod -a

配置驱动
sudo dpkg-reconfigure xserver-xorg

在选择驱动时,选择fglrx

或者用
sudo aticonfig --initial -f
以上方法只能两者择一。LCD显示器的推荐用第二种。

然后

sudo aticonfig --ovt=Xv


如果执行出错,则把备份的xorg.conf.xx改名,用mv命令。
其实本语句相当于在/etc/X11/xorg.conf的Device段添加两行:

Option      "VideoOverlay"      "on"
Option      "OpenGLOverlay"     "off"


并且


sudo gedit /etc/X11/xorg.conf


在文件末尾添加两段


Section "Extensions"
        Option  "Composite" "0"
EndSection

Section "ServerFlags"
        Option  "AIGLX" "off"
EndSection

注意,上面这两段非常重要!

重启系统

确认是否正常运行


$ fglrxinfo

display: :0.0  screen: 0
OpenGL vendor string: ATI Technologies Inc.
OpenGL renderer string: Radeon X1300 Series
OpenGL version string: 2.0.6334 (8.34.8)
 
posted @ 2007-06-20 13:32  swordzj  阅读(156)  评论(0编辑  收藏  举报