我需要在我的 Ubuntu 16.10 上安装 ATI 驱动程序。
lspci | grep VGA
给了我这个:
01:05.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] RS690M [Radeon Xpress 1200/1250/1270]
我该如何安装它们?
答案1
系统设置 -> 软件和更新 -> 附加驱动程序
- 等待几秒钟,探测完成......
- 从列表中选择 AMD 驱动程序...
- 保存并重启
以上是建议的方法...如果所需的驱动程序未显示在上面的列表中,则这里有安装必要的 AMD 原生驱动程序的说明
https://help.ubuntu.com/community/BinaryDriverHowto/AMD
概括
发布此
lspci -vvnn | grep VGA
确认您有 AMD 显卡,然后执行以下步骤
备份当前设置
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.BAK
sudo apt-get purge fglrx* # purge prior installs ... reboot if it found any
sudo apt-get install linux-headers-generic
sudo apt-get install fglrx-updates xvba-va-driver libva-glx1 libva-egl1 vainfo
重新启动之前生成一个新的 xorg.conf!
sudo amdconfig --initial
现在重新启动然后发出此命令以确认您正在使用 AMD 驱动程序
fglrxinfo
完成...详情请参阅上面的链接