一、前言 自从安装了CentOS,我的显卡就没消停过,一直在彪高温而且噪音特别大,于是决定上网搜索解决办法。下面记录下来以供日后查阅。
二、安装fglrx driver(ATI/AMD 显卡的linux驱动) 分别执行下面的命令安装 1. rpm --import http://elrepo.org/RPM-GPG-KEY-elrepo.org 2. rpm -Uvh http://www.elrepo.org/elrepo-release-6-6.el6.elrepo.noarch.rpm yum -y install yum-plugin-fastestmirror 3. yum -y install kmod-fglrx 4. 重启系统 现在,整个世界是不是安静了许多呢!
三、相关知识 ATI/AMD显卡的linux驱动分为radeon(开源)和fglrx(官方)两种。一般建议HD5000系列以前的就使用radeon,以后的就是用fglrx。而且fglrx驱动可以通过命令对GPU进行超频、频率和温度监控等操作。 以下的命令均为安装fglrx后可用 /*查看GPU当前频率和使用率*/ #> aticonfig --odgc
说明: 1. Current Clocks:GPU当前频率,在2D状态下会自动降频 2. Current Peak:GPU的默认频率,在3D状态下会自动恢复到该频率;超频就是要超默认频率! 3. Configuable Peak Range:频率的可设置范围,超频时不能大于该范围,降频不能小于该范围。但由于我的是HD5730,据说是HD5700的超频版,所以默认频率已经到顶了。 4. GPU load:GPU负载,2D状态下一般为0%
/*查看GPU温度*/ #>aticonfig --odgt
/*超频*/ #>aticonfig --odsc=500,700 /*重置频率*/ #>aticonfig --odrd 注意:重启后系统会自动重置GPU频率,所以可通过shell脚本系统启动时自动超频。 #!bin/bash aticonfig --odsc=500,700 exit
四、参考 安装fglrx:http://www.linwik.com/configuring_the_fglrx_module_for_amd_ati_graphics_chips_in_centos_and_rhel_6 超频、温度监控:http://hi.baidu.com/chenwzox/item/a7202c2118450c40469962c6
尊重原创,转载请注明来自:http://www.cnblogs.com/fsjohnhuang/p/3906340.html,^_^肥仔John (责任编辑:IT) |