Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've tried switching to Mint (it was Mint 12) about 6 months ago, but failed to do it due to enormous overheating which made it virtually impossible to run any applications more complex than Gedit. Time had passed, and now I'm back again with Mint 14, but feeling way more determined.

What I face are the following issues:

1) Great overheating (and by great I mean that just by doing nothing my CPU temp is floating around 70-75 C, which I find a lot).

2) Running multiple applications (let's say Chrome, Skype and Pidgin) results in critical overheating and immediate shutdown of the system.

3) Due to the stuff listed above, my battery drains in about 10-15 minutes, pretty much turning may laptop into crippled desktop machine.

The hardware specs:

HP-dv6 laptop (i7, 6gb RAM, dual graphics)

Output of lspci:

00:00.0 Host bridge: Intel Corporation 2nd Generation Core Processor Family DRAM   Controller (rev 09)
00:01.0 PCI bridge: Intel Corporation Xeon E3-1200/2nd Generation Core Processor Family PCI Express Root Port (rev 09)
00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)
00:16.0 Communication controller: Intel Corporation 6 Series/C200 Series Chipset Family MEI Controller #1 (rev 04)
00:1a.0 USB controller: Intel Corporation 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #2 (rev 05)
00:1b.0 Audio device: Intel Corporation 6 Series/C200 Series Chipset Family High Definition Audio Controller (rev 05)
00:1c.0 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 1 (rev b5)
00:1c.1 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 2 (rev b5)
00:1c.2 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 3 (rev b5)
00:1c.3 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 4 (rev b5)
00:1d.0 USB controller: Intel Corporation 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #1 (rev 05)
00:1f.0 ISA bridge: Intel Corporation HM65 Express Chipset Family LPC Controller (rev 05)
00:1f.2 SATA controller: Intel Corporation 6 Series/C200 Series Chipset Family 6 port SATA AHCI Controller (rev 05)
00:1f.3 SMBus: Intel Corporation 6 Series/C200 Series Chipset Family SMBus Controller (rev 05)
01:00.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI Whistler XT [AMD Radeon HD 6700M Series]
07:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express  Gigabit Ethernet controller (rev 06)
0d:00.0 Network controller: Broadcom Corporation BCM4313 802.11b/g/n Wireless LAN Controller (rev 01)
13:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5209 PCI Express Card      Reader (rev 01)
19:00.0 USB controller: NEC Corporation uPD720200 USB 3.0 Host Controller (rev 04)

What I've tried to do already:

1) I've edited my grub file to add some "splash" arguments there.

2) Installed jupiter and powertop.

3) Tried to upgrade to newer kernels (up to 3.8), btw running anything newer than 3.5 results in both resolution and wi-fi detection fail.

4) Read lots of forum threads devoted to the topic.

Question is:

What else I might do to become finally able to use Mint as my default OS without the risk of being burned alive by the CPU heat?

share|improve this question
2  
This is not the place for Linux user questions. Try here: superuser.com – Hydrangea Feb 9 at 16:15
2  
1. Is there by any chance a process that is consuming more CPU than it should? What does top tell you when the system is idle? 2. Have you configured cpufreq properly? 3. If I were you I would check my cooling system - system shutdowns under strain are not normal. – thkala Feb 9 at 16:25

closed as off topic by thkala, Jon Clements, user1610015, duskwuff, talonmies Feb 10 at 12:45

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

What you are seeing is definitely not normal behavior. A few things to check for:

  • Is your CPU really idle? Or is there by any chance a thread, either from the kernel or from a userspace program, that is consuming a lot of CPU for no reason?

    You can use top or htop to see the top CPU consumers, but make sure to get them to show kernel threads as well if they do not do so by default.

  • Is cpufreq configured properly for your system? What CPU frequencies does cat /proc/cpuinfo report? Setting the cpufreq governor to ondemand with the following shell script might also be a good test:

    #!/bin/bash
    
    for i in /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor; do
        echo ondemand > "$i"
    done
    

    Most Linux distributions use the performance governor by default, which always keeps the CPU at its highest frequency. The ondemand governor, on the contrary, changes the CPU frequency based on the current load, which makes for a cooler and less power-hungry operation.

  • Even if your CPU was always under actual load, your system should not shutdown. Modern systems apply thermal throttling to avoid heat-related shutdowns. Is your cooling system fully functional? Any fans not working right? Any possibility of dust build-up that needs to be dealt with?

    By the way, is this an Ivy Bridge system? Ivy Bridge i7 processors are significantly harder to cool than other i7 variants.

  • How do other versions of Linux, or that other operating system (you know the one...) fare on this computer?

share|improve this answer
I have Sandy Bridge but it doesn't matter now. i've studied all the CPU situation and found out that the real cause of my heating issue is the dual graphics (I have both ATI Radeon and Intel cards). it's not like the recent Catalyst 13.1 works as it's supposed to, but at least a distinguished path to follow thank you kindly for your help – user2057368 Feb 9 at 22:43
@user2057368: answer your own question then. And mark it as the right answer. Thanks – m-ric Feb 10 at 21:40
@m-ric: the question has been closed - the OP can't answer even if they wish to... – thkala Feb 10 at 21:47

Not the answer you're looking for? Browse other questions tagged or ask your own question.