5

How can I see GPU % usage, temperature, fan speed, etc, with Radeon Open Source Drivers?

  • Please improve your question: Did you succeed with the proprietary drivers but fail with open source ones, did you check the usual suspects like sensors, xsensors, do you need a graphical or textual tool for display etc. – aquaherd Jan 18 '13 at 11:04
  • I use open source driver, dont know does proprietary drivers can do this? Any tool are OK. sensors or xsensors return only temperature. I need GPU% usage and GPU fan speed, how to get that? – ttmwwtuz Jan 19 '13 at 05:47
  • Can AMD proprietary drivers get GPU% usage and GPU fan speed? – ttmwwtuz Jan 19 '13 at 07:20

3 Answers3

4

Try the usual approach:

  • install the package lm-sensors
  • run sudo sensors-detect, answer all the questions
  • run sensors to see readings

For a GUI, you can use sensors-unity from Snapcraft.

3

You can also use radeontop to get live statistics on your graphic card. It only works with r600 and newer.

sudo apt-get install radeontop

Reference: https://unix.stackexchange.com/a/92732/41104

Braiam
  • 67,791
  • 32
  • 179
  • 269
0

Yes the proprietary drivers can show temperature, gpu usage, fan, etc, information

aticonfig --odgc --odgt

(amdconfig = aticonfig, same file, different name)

I too am looking for the open source equivalent. You may be able to hack the aticonfig to work with the open source drivers.

Another tool you may try (radeontop), requires libpciaccess-dev, libncurses-dev, pkg-config

Kevin
  • 992
  • 9
  • 15