| | 5 | = Turning off CPU throttling = |
| | 6 | Mandatory ! |
| | 7 | == Manually == |
| | 8 | You need to write "performance" in the file /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor |
| | 9 | This should be done for each core available (replace "cpu0" with "cpu1" "cpu2" etc... in the path) |
| | 10 | |
| | 11 | == With cpufrequtils == |
| | 12 | |
| | 13 | Install the package |
| | 14 | {{{ |
| | 15 | sudo apt-get install cpufrequtils |
| | 16 | }}} |
| | 17 | |
| | 18 | Set cpu 0 to performance mode : |
| | 19 | {{{ |
| | 20 | sudo cpufreq-set --cpu 0 -g performance |
| | 21 | }}} |
| | 22 | |
| | 23 | This should also be done for each core available with the --cpu parameter |