I am using ubuntu 22.04.4 and I've noticed that after upgrading to this current version that the machine runs extremely slow from 22.04.2.
The base CPU clock always goes down to the minimum and causes the computer to lag.
Any idea what changed that could of made this issue occur?
I have attached some screen shots for reference.
CPU info:
System info:
Edit 1:
Edit 2:
When running the task: taskset -c 0 yes > /dev/null
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq
5500000
When not running the task: taskset -c 0 yes > /dev/null
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq
800000
grep . /sys/devices/system/cpu/cpu*/cpufreq/scaling_driver. Which CPU frequency scaling governor are you using? Dogrep . /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor. Some other useful info might begrep . /sys/devices/system/cpu/cpu0/cpufreq/*and (if intel_pstate driver)grep . /sys/devices/system/cpu/intel_pstate/*– Doug Smythies Apr 11 '24 at 00:17watch -n.1 "cat /proc/cpuinfo | grep \"^[c]pu MHz\"". Any new insights? – Fitzi Apr 15 '24 at 13:57grep . /sys/devices/system/cpu/cpu*/cpufreq/scaling_cur_freq. Your issue doesn't sound like low CPU frequency is the cause. – Doug Smythies Apr 15 '24 at 14:08/sys/devices/system/cpu/cpu9/cpufreq/scaling_driver:intel_pstate
/sys/devices/system/cpu/cpu9/cpufreq/scaling_governor:powersave
Odd thing is I don't have powersave selected on my power option
/sys/devices/system/cpu/intel_pstate/hwp_dynamic_boost:0 /sys/devices/system/cpu/intel_pstate/max_perf_pct:100 /sys/devices/system/cpu/intel_pstate/min_perf_pct:14 /sys/devices/system/cpu/intel_pstate/no_turbo:0 /sys/devices/system/cpu/intel_pstate/status:active
– Will H. Apr 17 '24 at 00:04powersavegovernor with the intel_pstate driver is similar to theondemandgovernor for the intel_cpufreq driver. Please edit your question adding all the information I asked for in my earlier comments, both to you and to Fitzi. – Doug Smythies Apr 17 '24 at 14:18taskset -c 0 yes > /dev/nulland while that is running in another terminal docat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq. Edit your question adding the text of the results, not as screen shots. – Doug Smythies Apr 20 '24 at 20:08Edit 2 done as requested.
Could this be related to the linux kernal being upgrade to 6.5.0?
Can you explain why the GUI that changes the power modes would be reflected in the governor?
– Will H. Apr 22 '24 at 00:47echo performance | sudo tee /sys/devices/system/cpu/cpu*/cpufreq/scaling_governorwill change the governor, but the change will not persist across re-boots. There are utilities for taking care of things across re-boots, but I don't use them. Note that even with theperformancegovernor the processor itself can reduce the CPU frequency if the load is light enough. – Doug Smythies Apr 23 '24 at 13:53