I have searched all the posts here on ask ubuntu on how to do this and can't seem to figure it out still. What is the best way to disable and enable turbo boost? My fans are running quite loud on my x220 so I'd like to disable it. Thanks!
Asked
Active
Viewed 5,613 times
2
cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_driver
– Doug Smythies Jan 13 '17 at 04:45cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_driver
to see ifintel_pstate
. In my case yes. Then,cat /sys/devices/system/cpu/intel_pstate/no_turbo
to see the status of turbo boost (0 means off, 1 means on). Mine is on. But then, to disable it should beecho "1" | sudo tee /sys/devices/system/cpu/intel_pstate/no_turbo
, but what I get is1 tee: /sys/devices/system/cpu/intel_pstate/no_turbo: Operation not permitted
.sudo
before that as indicated in comment gives the same. – Jan 27 '17 at 14:04