Mislim da je ovo uzrokovao novi kernel koji je kod mnogih napravio problem koji opisuješ. Ja koristim HP ProBook 4525s i isto kao i tebi problem mi je bila zagrijavanje i stalni rad ventilatora.
Pokušaj dopuniti grub na ovaj način, meni je pomoglo.
1. To force Active-State Power Management to be enabled, you must edit the GRUB2 config file so open a terminal and copy/paste this:
gksu gedit /etc/default/grub
2. Then, locate the line that looks like this:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
(it's on line 11 on my computer) and to the end of the line, before the last quote, add pcie_aspm=force (and a space before it), which should make it look like this:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash pcie_aspm=force"
Now double check you've edited the file correctly! Modifying this file incorrectly may cause your computer to stop booting!
3. And finally, update GRUB using the command below:
sudo update-grub
And restart your computer.
|