I had this same issue in my last attempt to upgrade (with a clean install) from 16.04 LTS to 18.04 LTS. When I am browsing internet and specially when I am playing videos my CPU+GPU raises to fast to high levels causing throttling to fire and producing intolerable lags, leaving the system unusable for about 60 seconds or more.
With Ubuntu 16.04 LTS I never experienced this problem. Of course temperatures raised and throttling fired frequently (after all this is a laptop), but system was never unusable and video playback was smooth.
My previous solution was to downgrade to 16.04 LTS again, but now I need the newer version so I want to find a solution.
System specs:
- CPU: Intel Core i7-6500U
- GPU: Intel HD Graphics 520
- Ubuntu: 18.04 LTS
- Linux: 4.15.0-30
- Mesa: 18.0.5
- Hardware acceleration: on
UPDATE 1
Definitively it is a problem with frequency throttling. Instead of throttling CPU frequency to avoid overheating the procesor, the system is waiting until temperature reaches a limit (default of 85ºC) and then intel_powerclamp
module fires, turning the system unusable for 60 seconds or more.
I would expect a progressive performance degradation from intel_powerclamp
, but no, it is all or nothing. ¿Can this be configured?
My current solution is a modification of the script of this answer. It seems to work, but it is a big hack. There must be a conventional way to tweak system configuration to accomplish the same result.
UPDATE 2
If I turn off frequency turbo boost (echo "1" | sudo tee /sys/devices/system/cpu/intel_pstate/no_turbo
) the problem completely disappears. Temperature never reaches the limit and the script introduced on update 1 nor intel_powerclamp
fires and the laptop is smooth and usable.
Problem now is that turbo boost is disabled. With Ubuntu 16.04 LTS I never had this issue.
This is clearly a bad configuration of the thermal management subsystem of Ubuntu 18.04 LTS. Is there a way to fix it?
UPDATE 3
System is still unusable. Installing Ubuntu 18.04 LTS server and anything else than Gnome3 works. Well, it's not a novelty that Gnome sucks, but it was usable with 16.04...
Disable intel_pstate at boot by editing your grub configuration.
Open /etc/default/grub with your preferred text editor and locate the line that begins with:
And add intel_pstate=disable at the end of that string. Here's how mine looks after that:
Now, execute:
And reboot your laptop. That's it. It should work as smooth and cool as with 16.04.
Some additional information: intel_pstate governor seems to be buggy, or just plain stupid and unable to detect quick temperature raises and reduce the processor speed in consequence. It seems it'd just pray to Saint Cooling Device for it to keep the CPU below the shutdown threshold. In a desktop computer with a DC9 turbine like fan such leap of faith maybe justified, but in laptops with one small fan like my XPS13 it's better to be skeptic and leave those things to the good old ACPI (Atheist Configuration and Power Interface). At least until the intel_pstate governor grow some brains.
And the turbo boost is mostly useless. Chances are that you won't lose anything for having it disabled. That feature was useful in the days of monocore 32 bit processor, but not in the 64 bit multicore world we're living on right now.
I had issues with the i7-6500u as well.
Changes in the Linux kernel improved performance of Intel chips, with the side effect of causing thermal clamping on devices with a low thermal limit.
I found TLP helped a lot with toning down the behavior. Turning off turbo boost is another way to tame it. You can also set the fans to constantly run or come on at a lower temperature, which raises the thermal limit of the device.
tlp
As mentioned on this thread
tlp
works wonders for keeping system under control. It works withthermald
, Intel Powerclamp, Battery vs AC for USB power, etc. Although highly configurable I've never had to change the configuration settings for a pleasant Out-Of-The-Box experience. Prior to using it I had all kinds of problems with an IvyBridge laptop overheating all the time. I have it on my new Skylake laptop and the fans NEVER run except when doing Ubuntu 16.04 LTS to 18.04 upgrade.You can get a very detailed write-up with installation instructions here: Stop cpu from overheating
As an aside I've read a few questions the last two weeks from people wanting to override the minimum frequency, maximum frequency or to fix the current frequency at a specific speed. As such I've decided to create a new bash+yad GUI project. A tab to display temperatures for all thermal zones and issuing notify-send (pop-up bubble messages) will be part of it. As well some sort of session log file for when you weren't watching the screen might be kept.
I just had the idea 2 hours ago whilst rereading this thread. No promises on doing the project but I think a few people would like it and I would have a lot of fun :)
Dell Inspiron 17-5770 with Intel i7-8550 and dual Gpu here, heat and bus problems with Ubuntu 18.04 installed. Every time there is a system driver update seems to push the hardware hotter and slower. Last update had the case at 140F and the CPU at 160F while watching YouTube lag at 140p in a 70F room with plenty of air flow. This is what worked for me:
Find the line that starts with
GRUB_CMDLINE_LINUX_DEFAULT=
and add these comments within the quotes.I.E. after your edit it might say this:
Then update the grub with:
I don't believe this is a proper fix. But if your operating system is on the verge of destroying your computer, find what works and hope an update comes along that doesn't make things worse.
Best luck
Upgrade to kernel 5.3 fix my problem not more system shutdown due to high temperatures. I updated using:
http://ubuntuhandbook.org/index.php/2017/02/ukuu-install-latest-kernels-ubuntu-linux-mint/