CentOS6.5 install the ati driver
I. Preface
Since I installed CentOS, my video card has never been deprecated. It has been getting too high and the noise is very high. So I decided to search for a solution online. The following is recorded for future reference.
Ii. Install fglrx driver (linux driver for ATI/AMD graphics card)
Run the following commands to install
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.rpmyum -y install yum-plugin-fastestmirror
3.
yum -y install kmod-fglrx
4. restart the system
Now, is the whole world a bit quieter!
Iii. Related Knowledge
Linux drivers for ATI/AMD graphics cards are divided into radeon (Open Source) and fglrx (official. We recommend that you use radeon before the HD5000 series and fglrx later. In addition, the fglrx driver can use commands to monitor GPU for overclocking, frequency, and temperature.
The following commands are available after fglrx is installed:
/* View the current GPU frequency and usage */#> aticonfig -- odgc
Note:
1. Current Clocks: Current GPU frequency, which is automatically downgraded in 2D state
2. Current Peak: the default GPU frequency. It is automatically restored to this frequency in the 3D state. overclocking means the default frequency is exceeded!
3. Configuable Peak Range: The configurable frequency Range. The frequency cannot exceed this Range during overclocking, and the frequency reduction cannot be less than this Range. However, since I use HD5730, it is said that it is the super-frequency version of HD5700, so the default frequency has reached the top.
4. GPU load: GPU load, generally 0% in 2D state
/* View GPU temperature */#> aticonfig -- odgt
/* Overclock */#> aticonfig -- odsc = 500,700
/* Reset frequency */#> aticonfig -- odrd
Note: After restart, the GPU frequency is automatically reset. Therefore, you can use the shell script system to automatically overclock the GPU frequency.
#!bin/bashaticonfig --odsc=500,700exit
Iv. References
Install fglrx: http://www.linwik.com/configuring_the_fglrx_module_for_amd_ati_graphics_chips_in_centos_and_rhel_6
Super frequency, temperature monitoring: http://hi.baidu.com/chenwzox/item/a7202c2118450c40469962c6
Respect originality. For more information, see http://www.cnblogs.com/fsjohnhuang/p/3906340.html,^_^ John.