1

I notice that my laptop (Dell Inspiron N5010) is frequently overheating even with the necessary fglrx drivers installed. If I manually remove the graphics card(or get it removed by someone more experienced), will it stop overheating? Everything else is working absolutely fine.

x__x
  • 299
  • 3
  • 12

3 Answers3

1

Have you tried installing the latest microcode for your cpu? This usually solves a few issues including cpu overheating. You can find detailed instructions on installing the microcode for your CPU by visiting this link. Microcode for both Intel CPUs and AMDs is installed through Synaptic Package Manager so no need to worry about adding some new ppa or similar.

As for your video card, try to install a genuine driver from AMD support page for your video card. It will take a lot of heat from your CPU once the driver is properly installed and working :).

You can visit this page to learn more about overheating and how to deal with this problem by installing one or more of those programs suggested in that article. Read the comments at the end of the article, there are some interesting solutions in there too.

Taz D.
  • 2,225
  • 2
  • 17
  • 21
  • I have an ATI Raedon HD 5740 Graphics card. – x__x May 04 '14 at 08:01
  • I should have known better. You mentioned that in your question. I updated my answer, and added a link to some useful article about overheating and how to deal with that. Read the comments too, there are some useful links inside those comments. – Taz D. May 04 '14 at 22:31
1

Got the same issue because of hybrid graphics. This guide worked for me.

Luís de Sousa
  • 13,227
  • 26
  • 81
  • 128
Fanghornn
  • 11
  • 2
0

This worked for me.

Solution using pm-utils that can be found at How to set power_profile at boot

This sets the radeon power_profile to low on boot and retains that setting after suspend-resume.

Open terminal.

Step 1: create hook

sudo gedit /usr/lib/pm-utils/power.d/radeon-power_profile

Step 2: fill in the desired setting (low, medium, high)

#!/bin/sh

echo profile > /sys/class/drm/card0/device/power_method

echo low > /sys/class/drm/card0/device/power_profile

exit 0

Step 3: make it executable

sudo chmod +x /usr/lib/pm-utils/power.d/radeon-power_profile

Step 4: Use "exit" in terminal to finish.

Step 5: Reboot