Persistent High-Fan Speed Ubuntu 14.04
Fan speed is normalized by editing the line
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
in the grub configuration file found at /etc/default/grub
so that it reads
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi=!Windows 2012"
Follow these steps to try this solution:
- Open a terminal, type
sudo gedit /etc/default/grub
, and press Enter - Enter your login password and press Enter. The password will not be displayed as you type it.
Edit the line
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
such that it reads
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi=!Windows 2012"
Click "Save", wait a few moments for the file to save, then close the text editor.
In the terminal, type
sudo update-grub
and hit EnterFinally, shut down your computer. Shut it down completely: don't restart it.
Once you turn your computer back on and select the linux operating system whose grub file you edited earlier, your fans should be working normally. This solution has worked for me on Ubuntu, Linux Mint, Elementary OS, and LXLE on a Dell Inspiron 15R 5520 laptop.
I also have a Dell inspiron 15r se. Thanks to vitorafsr's post on launchpad, I could solve my problem.
Just install i8kutils
by running
sudo apt-get install i8kutils
in the command line.
If that doesn't work have a look at the i8kutils project page.
I think i have just found an easier solution and it' working fine on my Dell Inspiron 3521 15R with i3 processor.
The solution is called TLP. I know that TLP is mainly used to save battery power but it's working even if i'm connected to AC and without limiting CPU resources.
First, check if you have installed on your system laptop-mode-tools and uninstall it:
sudo apt-get purge laptop-mode-tools
Then, install TLP:
sudo add-apt-repository ppa:linrunner/tlp
sudo apt-get update
sudo apt-get install tlp
Edit the file /etc/default/tlp:
sudo nano /etc/default/tlp
and look for #CPU_MAX_PERF_ON_AC=100. Uncomment the line and save the file pressing CTRL+O
Start TLP:
sudo tlp start
and if you are lucky enough your fan will calm down a lot.
NOTE: intel_pstate must be enabled on your system. It should be already enabled by default. You can check it digiting the following command in the terminal:
grep -i pstate /boot/config-$(uname -r)
The output should be:
CONFIG_X86_INTEL_PSTATE=y