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.
3 Answers
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.

- 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
Got the same issue because of hybrid graphics. This guide worked for me.

- 13,227
- 26
- 81
- 128

- 11
- 2
-
Welcome to Ask Ubuntu! Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference. – Eliah Kagan Mar 29 '14 at 09:08
-
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

- 15