惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

C
Check Point Blog
aimingoo的专栏
aimingoo的专栏
Jina AI
Jina AI
Microsoft Security Blog
Microsoft Security Blog
IT之家
IT之家
V
Visual Studio Blog
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 聂微东
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
大猫的无限游戏
大猫的无限游戏
Y
Y Combinator Blog
Stack Overflow Blog
Stack Overflow Blog
D
Docker
MyScale Blog
MyScale Blog
小众软件
小众软件
云风的 BLOG
云风的 BLOG
美团技术团队
Microsoft Azure Blog
Microsoft Azure Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 【当耐特】

CachyOS Forum - Latest posts

Ran into a frozen black screen issue with latest update Niri Settings GUI Not Appearing Update to Gnome 50 and I'm getting black/blank screen on NVIDIA with hybrid graphics My JBL Quantum 350 headphones dont play sound 90% of the time on linux while on windows it plays audio 99% of the time Niri/Noctalia Shell notifications Getting a black screen after alt-tabbing too many times Rog-control-center Duplicate keyboard and mouse in system settings? Games running very poorly after first session (semi-solved, still need help though!) Amdgpu random hangs (does cachy perhaps plan to carry patches for this)? A little something. The adj script that replaces GNU fmt for non-ASCII text Mouse scroll wheel issues - ratchet Can't start steam after updates of today (17 April) Balena etcher or ventoy QEMU Bridge setup - Maybe already known but I found it pretty difficult to do and needed much reading Multi-boot install: what do I do about my /boot and /boot/efi partition? Do you collect all the solutions and post them on Wiki or Forum? System update - lts headers invalid or corrupted Sick to death of updates killing my games! I messed up my stuff again and cant download any thing now. error below Got Logitech MX4 with Haptic working in CachyOS Need help with the performance button on my Acer Nitro V16 AI Bailing out, you are at your own Troubles in the Starfield What is so special about the new Linux Kernel 7? "Issue: Display brightness is locked at a low level after waking from sleep on CachyOS (latest update) Balena etcher or ventoy Help with kernel update, emergency mode Issue happening only on wayland Display not recognised - low resolution
After updating cachyOS packages GPU & CPU usage is not fu...
FreDZOMKA · 2026-05-28 · via CachyOS Forum - Latest posts

After doing a cachyOS package update my fps in games have become unstable. I first noticed this in Outlast Trials dropping from 90+ fps down to ~20fps. I have now tested other games and the issue persist. Extremely unstable fps will run mainly at 20fps and the jump up two 100 fps in correspondance with gpu and cpu usage mirroring the same pattern. Super easy games to run will cap at 60 but still stutter infrequently. This seems to point to a rendering queue issue (right?)

Monitoring usage GPU hovers around 20%-40% and will suddenly spike to 90% for a short while before going back down. For the CPU it’s more stable at around 20%-60%.

  • I have tried switching to X11, no difference.
  • I have tried setting NVIDIA X Server Settings to Max Performance
  • nvidia-smi shows Perf in P2

My best guess is that this is some CPU or GPU rendering queue throttling? I’ve included my pastebin and I guess what could be interesting to look at there is the nvidia driver being used. Maybe there was a mismatch caused by the update? Do I need to do some kind off downgrade (linux noob btw).

Anyone else had this issue? I have not idea if it’s related to the April release.

This issue has just “randomly” come up, I had no problems before. So this really sucks when things just breaks, makes linux and cachy seem unreliable.

EDIT - After reading this post and installing nvidia 32-bit driver. Game ran better for a bit but then regressed.

This is because the new cachyos abandoned the old power state setter for the gpu and cpu. We can check if our components are in power saving mode with

nvidia-smi --query-gpu=pstate
P2
sudo systemctl status nvidia-powerd cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
powersave

Now we see the problem. We can force our components to perform properly again with.
echo performance | sudo tee /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor
This sets all cpu cores to performance mode.

sudo systemctl mask nvidia-powerd. For the GPU.