Hi,
I prefer to always set the CPU to the performance governor as it always boosts my computer’s performance:
Update: The kernel module loaded by default that controls the cpu frequency in Ubuntu Wily’s kernel is “linux_pstate”. You have to disable it before applying the steps in the next section. You can do this by modifying “/etc/default/grub” and adding “intel_pstate=false” parameter to the “GRUB_CMDLINE_LINUX_DEFAULT” line, it should look like this:
GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash intel_pstate=disable”
save the file, then run “sudo update-grub”
Reboot, then do the steps below:
- Install the cpufrequtils package: “sudo apt-get install cpufrequtils”
- Edit the “/etc/init.d/cpufrequtils” file and set the following line to the governor you need (performance in my case): “GOVERNOR=”performance””
- Save the file and exit
- Reboot
That’s it! Enjoy!
Reference