linux系统amd驱动怎么安装教程,ubuntuamd显卡驱动安装教
⽂章正⽂
sudo apt-get install module-assistant build-essential fakeroot dh-make debconf libstdc++5 linux-headers-$(uname -r)
ubuntu安装教程sudo sh amd-driver-installer-catalyst-13-4-x86.x86_64.run --install
debian安装AMD显卡驱动
和Ubuntu相⽐,debian对于开发者来说在⼤部分情况下都更好⼀些,但是在安装驱动这个问题上debian确实⽐Ubuntu⿇烦⼀
些,Ubuntu因为更新⽐较快,所以把很多较新的驱动都整合进去了,⽐如我的笔记本的显卡驱动,安装好就⾃动识别出来了,但是debian 就不能识别,屏幕分辨率⼀直调不⾼,今天我下定决⼼要好好安装显卡驱动。
我的显卡是AMD的,那么打开:
在这⾥选择相应的显卡型号
然后下载下来是⼀个.run⽂件
关于.run⽂件怎么打开的问题,很多⼈问过我,其实不要被它的后缀吓到,这货就是个shell脚本,在bash下进⼊.run⽂件的⽬录,执⾏如下命令:
chmod 777 amd-driver.run //加上可执⾏权限
./amd-driver.run
通常来说,这⼀步安装是会出错的(四⾯板凳砖块飞来,错的你说个P啊),会有⼀个对话框提⽰”one or more tools required cannot be found in this system”,打开记录⽂件你会发现这么⼀⾏:
fglrx installation requires that the system have kernel headers
系统缺少内核头⽂件,在bash下执⾏以下命令:
sudo apt-get install build-essential linux-headers-$(uname -r) module-assistant
然后安装就能顺利完成了,接下来重启就能看到催化剂驱动的效果了。
⽂章来⾃绿盟(xDowns)转载请注明来路。