我目前使用3.10内核运行13.04,所以我可以使用我的wifi。
我愚蠢地尝试使用催化剂13.6 beta,尽管它说它与内核3.10不兼容。
不过,我的笔记本电脑就在我想要的地方,没有它我就不能生活,但我想尝试安装Catalyde13.8测试版,因为它与内核3.10兼容。
如果安装出错,如何卸载催化剂13.8测试版?
发布于 2013-09-01 04:24:52
由于您自己构建了deb包,所以正确的命令是:
sudo apt-get remove --purge fglrx*
您忽略了前面命令中的“删除”和"--“部分。更多信息可以在这里找到:http://wiki.cchtml.com/index.php/Ubuntu_拉响_安装_Guide#Removing_Catalyst.2Ffglrx
如果您计划在运行后使用开源驱动程序:
sudo apt-get remove --purge xserver-xorg-video-ati xserver-xorg-video-radeon
sudo apt-get install xserver-xorg-video-ati
sudo apt-get install --reinstall libgl1-mesa-glx libgl1-mesa-dri xserver-xorg-core
sudo mv /etc/X11/xorg.conf /etc/X11/xorg.conf.backup
sudo rm -rf /etc/ati
发布于 2013-09-01 02:43:20
有关这方面的Ubuntu文档非常有用;请参见此处:https://help.ubuntu.com/community/BinaryDriverHowto/ATI
总结:首先,从AMD下载驱动程序。接下来,安装一些从源代码构建所需的包,如果您还没有它们:
sudo apt-get install dh-make dh-modaliases execstack libc6-i386 lib32gcc1
然后,您可以通过运行.deb包而不是直接运行安装脚本来安装
sh amd-driver-installer-catalyst-13-4-x86.x86_64.run --buildpkg Ubuntu/raring
然后,您可以使用gdebi或synaptic (我想是软件中心)安装包(应该有三个包),或者从命令提示符安装
sudo dpkg -i fglrx*.deb
最后,键入sudo aticonfig --initial
(或等效的-我认为- sudo amdconfig --initial
),然后重新启动。如果驱动程序没有按计划工作,您可以像其他软件一样删除它们。(我发现使用synaptic最容易实现这一点,并在搜索栏中键入fglrx,因为软件中心不喜欢让您看到“技术”项,或者您可以运行apt删除在构建.deb包时创建的文件名。)
发布于 2013-08-13 05:03:52
给你的是:
/usr/share/ati/
sudo ./amd-uninstall.sh
https://askubuntu.com/questions/331889
复制相似问题