Hi Cerebro Agent ,
Sometimes the package isn’t installed by default.
sudo apt install cpufrequtils
Then check what governors are available:
cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_available_governors
If performance isn’t listed, that’s likely the issue.
Try setting the governor manually.Instead of cpufreq-set, you can try
echo performance | sudo tee /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor
This directly writes to the system files, bypassing any potential issues with cpufreq-set.
Since you’re on a Standard D8as v5 VM, Azure’s hypervisor might be restricting CPU frequency changes. You can check your current settings with:
lscpu | grep "MHz"
If the comment was helpful, please don't forget to click "Upvote".
If the issue still persist or any further queries, please let us know we are glad to help you.
Thank You.