Differences between revisions 2 and 3
Revision 2 as of 2014-03-23 15:59:58
Size: 578
Editor: CarlNobile
Comment:
Revision 3 as of 2014-03-23 16:03:52
Size: 733
Editor: CarlNobile
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
I have often found that the fan speed is high after I install a new version of Ubuntu, so this is what you do to fix it. I have often found that the fan speed is high after I install a new version of Ubuntu, so this is what you do to fix it. This is a slight update to a post I found at: http://askubuntu.com/questions/376636/notebook-fan-constantly-running-at-a-high-speed
Line 5: Line 5:
 1. Install lm-sensors: sudo apt-get install lm-sensors
 2. Run sensors-detect which will install the 'coretemp' module:
 3. Run in terminal: more /etc/modules

 4. Modify /etc/default/grub: sudo gedit /etc/default/grub.conf
 1. Install lm-sensors: {{{sudo apt-get install lm-sensors}}}
 2. Run sensors-detect which will install the 'coretemp' module
 3. Run in terminal
: {{{less /etc/modules}}}
 4. Modify /etc/default/grub: {{{sudo gedit /etc/default/grub.conf}}}
Line 19: Line 19:
 5. Update grub: sudo update-grub  5. Update grub: {{{sudo update-grub}}}

Fan Speed High

I have often found that the fan speed is high after I install a new version of Ubuntu, so this is what you do to fix it. This is a slight update to a post I found at: http://askubuntu.com/questions/376636/notebook-fan-constantly-running-at-a-high-speed

  1. Install lm-sensors: sudo apt-get install lm-sensors

  2. Run sensors-detect which will install the 'coretemp' module
  3. Run in terminal: less /etc/modules

  4. Modify /etc/default/grub: sudo gedit /etc/default/grub.conf

Change from:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

to:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi=Linux"
  1. Update grub: sudo update-grub

  2. Reboot your machine

FanSpeedHigh (last edited 2014-03-23 16:07:57 by CarlNobile)