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

推荐订阅源

爱范儿
爱范儿
腾讯CDC
博客园 - 司徒正美
A
About on SuperTechFans
H
Help Net Security
J
Java Code Geeks
C
Check Point Blog
B
Blog RSS Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
MongoDB | Blog
MongoDB | Blog
U
Unit 42
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
MyScale Blog
MyScale Blog
V
Visual Studio Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
H
Hackread – Cybersecurity News, Data Breaches, AI and More
F
Fortinet All Blogs
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
GbyAI
GbyAI
博客园 - 【当耐特】
雷峰网
雷峰网

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
Rarely laptop gets totally unresponsive after sleep/suspend
@manelsanz M · 2026-04-23 · via CachyOS Forum - Latest posts
Finally I’ve fixed it! I’m using Brave, so I taken a look to the journalctl logs after the CPU freeze and I’ve found multiple things, but basically seems a bug with the Intel processor and PSR. That’s what I followed to fix it from Gemini: Here is a technical summary of the steps we took to fix the 100% CPU spike after resuming from suspension on CachyOS (Arch-based) with an Intel i5-1135G7 (Tiger Lake) . System Context Hardware: ThinkPad (Intel i5-1135G7 / Iris Xe Graphics). OS: CachyOS (Wayland / KDE Plasma). Bootloader: Limine. Issue: 100% CPU usage for ~60 seconds after wake from sleep, caused by GPU driver/browser desync. 1. Disable Intel PSR (Kernel Parameter) The most critical fix for Intel 11th Gen graphics. It prevents the GPU from “hanging” during the power state transition. File: /boot/limine.conf Action: Add i915.enable_psr=0 to your kernel cmdline . Plaintext cmdline: ... i915.enable_psr=0 2. Brave Wayland Configuration Forces Brave to handle Wayland protocols and GPU memory buffers correctly. File: ~/.config/brave-flags.conf Content: Plaintext --ozone-platform-hint=auto --enable-features=WaylandWindowDecorations --disable-gpu-memory-buffer-video-frames 3. Fix Fontconfig “File Not Found” Error Brave/Chromium often looks for font configurations in /usr/etc/ instead of the standard /etc/ . Bash sudo mkdir -p /usr/etc sudo ln -s /etc/fonts /usr/etc/fonts 4. Clear GPU and Shader Cache Wipes old, potentially corrupted render instructions. Bash rm -rf ~/.config/BraveSoftware/Brave-Browser/Default/GPUCache rm -rf ~/.config/BraveSoftware/Brave-Browser/GrShaderCache 5. Verification Check logs: journalctl -b | grep -i error (should no longer show CompositorAnimationObserver or Fontconfig errors). Check GPU status: Navigate to brave://gpu and verify Video Decode and Rasterization are “Hardware accelerated”.