My laptop is an Asus A46CM with Intel CPU and Nvidia Graphics. When I use Ubuntu my system runs very hot and I am unable to install the Nvidia proprietary drivers. In about 15 minutes my laptop will freeze due to the heat. I've tried other distros but they all seem to do the same thing. Can Ubuntu help with this? If so, how?
Asked
Active
Viewed 288 times
1
2 Answers
3
Thermald has been shipped with Ubuntu since Trusty and may help resolve your issue.
sudo apt-get install thermald
The default mode should work fine, however, for some machines one may need to tweak the configuration file. See https://wiki.ubuntu.com/Kernel/PowerManagement/ThermalIssues

Colin Ian King
- 18,820
-
-
it should work OK, there may be a few kernel interfaces lacking to do full thermal control, but I suggest give it a try and see how it works. – Colin Ian King Nov 13 '15 at 11:00
2
To install TLP, open a terminal window (press alt+ctrl+t) and enter the following commands
sudo apt-add-repository ppa:linrunner/tlp
sudo apt-get update
sudo apt-get install tlp --install suggests
sudo tlp start
sudo reboot
Tlp as configured by default should help, however @ArupRoyChowdhury is correct that ensuring you have a valid video driver will have a great effect. I do not use Nvidia myself, and suggest you post a seperate question about how to install the correct driver for your system

Charles Green
- 21,339
tlp
which you can install in 15.10 withsudo apt-get install --install-suggests tlp
You should also consider cleaning the fans in your laptop and making sure that they work. – Charles Green Nov 11 '15 at 14:23does your advice can work in 12.04?
– Syukur Nov 12 '15 at 14:28