我按照步骤进行本指南。我已经安装了驱动程序,没有任何问题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
答案1
我搜索过这个问题,知道只有全新安装视频驱动程序才能解决问题。我认为你搞乱了你的驱动程序。我有一个新的程序来正确安装 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 驱动程序的所有内容。如果发生任何错误,请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
桌面上的文件并打开终端
cd ~/Desktop
sudo sh amd-driver-installer-*.run --buildpkg Ubuntu/oneiric
它将*.deb
在您的桌面上创建 3 个文件。
现在用于sudo dpkg -i fglrx*.deb
在您的系统中安装驱动程序。
现在使用sudo aticonfig --initial -f
创建一个新的 Xorg.conf 文件。现在重新启动
sudo reboot
重启后,使用 检查你的工作驱动程序fglrxinfo
。这是安装 AMD 驱动程序的正确步骤。