- Code: Select all
[root@basia-pc ~]# cat /etc/sysconfig/cpupower
# See 'cpupower help' and cpupower(1) for more info
CPUPOWER_START_OPTS="frequency-set -g ondemand"
CPUPOWER_STOP_OPTS="frequency-set -g ondemand"
And output from cpupower frequency-info
- Code: Select all
analyzing CPU 0:
driver: p4-clockmod
CPUs which run at the same hardware frequency: 0
CPUs which need to have their frequency coordinated by software: 0
maximum transition latency: 10.00 ms.
hardware limits: 400 MHz - 3.20 GHz
available frequency steps: 400 MHz, 800 MHz, 1.20 GHz, 1.60 GHz, 2.00 GHz, 2.40 GHz, 2.80 GHz, 3.20 GHz
available cpufreq governors: ondemand, conservative, powersave, userspace, performance
current policy: frequency should be within 800 MHz and 3.20 GHz.
The governor "performance" may decide which speed to use
within this range.
current CPU frequency is 3.20 GHz (asserted by call to hardware).
boost state support:
Supported: no
Active: no
So the CPU driver is loaded and governor "performance" is in use. I try to set to ondemand manually like this:
- Code: Select all
[root@basia-pc ~]# cpupower frequency-set -g ondemand
Setting cpu: 0
But it is still performance.
I look to systemctl and it looks like this:
- Code: Select all
cpupower.service loaded active exited
So, the service is not active. Then I try to set it enable and start:
- Code: Select all
[root@basia-pc ~]# systemctl enable cpupower.service
[root@basia-pc ~]# systemctl start cpupower.service
But the service is still in "exited" state. Reboot does not help
Any idea how to resolve the problem?