本文主要是介绍Debian 安装 AMD64位显卡驱动 报错的解决方案,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
首先,去amd官网下载适合自己的驱动。直接在google搜索栏里面输入显卡的名称即可,点击并下载。给个网址,自己可以选择了。http://support.amd.com/us/gpudownload/Pages/index.aspx
如何查看自己显卡的型号呢?使用如下命令
lspci -v
或者是
glxinfo | grep render
我的是 AMD Radeon HD 6530D ,驱动名称是:amd-driver-installer-12-6-x86.x86_64.run 在官网下载驱动完毕之后,进行安装,如果日志中报错是下面的信息:
Check if system has the tools required for installation.fglrx installation requires that the system have kernel headers. /lib/modules/2.6.32-5-686-bigmem/build/include/linux/version.h cannot be found on this system.One or more tools equired for installation cannot be found on the system. Install the required tools before installing the fglrx driver.Optionally, run the installer with –force option to install without the tools.Forcing install will disable AMD hardware acceleration and may make your system unstable. Not recommended.
那需要安装linux-headers,使用如下命令:
apt-get install linux-headers-$(uname -r)
此时,在安装amd的驱动,重启就ok了。
这篇关于Debian 安装 AMD64位显卡驱动 报错的解决方案的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!