fglrx安装没有成功 – gl_conf问题

我按照本指南的步骤操作。 我已经安装了驱动程序,没有任何问题sudo dpkg -i fglrx*.deb

下一步是生成一个新的/etc/X11/xorg.conf文件 ,但由于以下原因,我无法执行此操作:

当我输入sudo aticonfig --initial -f终端显示这个输出:

 sudo: aticonfig: command not found 

此问题是由符号链接到fglrx目录的错误引起的。 看看这一部分 ,你可以看到 – 如何解决它 – 但它对不起作用 。 为什么不呢? 因为在我输入sudo update-alternatives --auto gl_conf后终端显示我:

 update-alternatives: error: no alternatives for gl_conf. 

我该怎么做才能解决这个问题? GC: ATI RadeonHD 6670

我搜索过这个问题,并了解只有全新安装的video驱动程序才能解决问题。 我觉得你搞砸了你的司机。 我有一个新的程序来正确安装AMD驱动程序,但首先刷新您的存储库缓存

 sudo apt-get update && sudo apt-get dist-upgrade 

现在开始安装程序。

 sudo sh /usr/share/ati/fglrx-uninstall.sh sudo apt-get remove --purge fglrx fglrx_* fglrx-amdcccle* fglrx-dev* 

这将删除有关AMD Driver的所有信息。 如果file not found任何错误,如file not found忽略它。 然后,我们需要一些依赖文件来安装此驱动程序。 输入终端

 sudo apt-get install build-essential cdbs fakeroot dh-make debhelper debconf libstdc++6 dkms libqtgui4 wget execstack libelfg0 dh-modaliases 

然后从这里下载适当的驱动程序。

zip桌面上的zip文件并打开终端

 cd ~/Desktop sudo sh amd-driver-installer-*.run --buildpkg Ubuntu/oneiric 

它将在您的桌面上创建3 *.deb文件。

现在使用sudo dpkg -i fglrx*.deb在系统中安装驱动程序。

现在使用sudo aticonfig --initial -f创建一个新的Xorg.conf文件。 现在重启

 sudo reboot 

重新启动后,使用fglrxinfo检查您的工作驱动程序。 这是安装AMD驱动程序的正确步骤。