Brave Browser crashing entire Linux OS

I was using this browser happily on my Fedora Linux for more than a year. Today after recent Linux update, now when I open Brave browser my screen crashes (getting broken picture of entire screen, like GPU drivers would suddenly stopped working) and then if I touch anything with the mouse on Brave browser my entire OS just freezes.

I checked updates on emore time. I reinstalled Brave Browser and nothing, the issue is still here, Brave Browser is crashing entire OS. Other applications are working fine. Mozilla browser is working fine, but Brave - no more.

System Details Report


Report details

  • Date generated: 2025-09-18 16:53:31

Hardware Information:

  • Hardware Model: Hewlett-Packard HP ProDesk 490 G2 MT
  • Memory: 16.0 GiB
  • Processor: Intel® Core™ i7-4790 × 8
  • Graphics: PITCAIRN
  • Disk Capacity: 2.5 TB

Software Information:

  • Firmware Version: 02.11
  • OS Name: Fedora Linux 42 (Workstation Edition)
  • OS Build: (null)
  • OS Type: 64-bit
  • GNOME Version: 48
  • Windowing System: Wayland
  • Kernel Version: Linux 6.16.7-200.fc42.x86_64

Brave Browser GPU Crash Fix - Fedora Linux with Older AMD Graphics

Problem Description

System: HP ProDesk 490 G2 MT, Intel i7-4790, 16GB RAM, AMD Radeon R7 370 (Curacao PRO/Pitcairn), Fedora 42, GNOME 48, Wayland

Issue: After a recent system update, Brave Browser would crash violently, breaking the entire desktop and freezing the OS. Only Brave was affected - other applications worked normally. The crash occurred immediately upon launching Brave.

Initial Misdiagnosis: Another AI suggested completely disabling GPU acceleration with --disable-gpu --disable-software-rasterizer, which worked but caused high CPU usage as all rendering was offloaded to the processor.

Root Cause Analysis

Investigation revealed that the AMD R7 370 GPU (circa 2014) was being blocklisted by Chromium’s GPU compatibility system. The brave://gpu/ report showed:

  • All GPU features marked as “Software only” or “Disabled”

  • Fallback to SwiftShader software rendering

  • Multiple GPU-related problems detected

  • The hardware GPU was completely bypassed for safety reasons

This is common with older AMD GPUs on modern Linux distributions due to:

  • Driver compatibility issues with newer OpenGL/Vulkan implementations

  • Known stability problems with specific GPU/driver combinations

  • Wayland compatibility issues with legacy graphics hardware

  • Browser security policies that aggressively blocklist problematic hardware

Solution

Instead of completely disabling GPU acceleration, we used a more targeted approach:

Testing Command

brave-browser --use-gl=desktop

This flag forces Brave to use a more stable OpenGL rendering path that’s compatible with older AMD hardware without completely disabling graphics acceleration.

Permanent Fix

Modified the desktop file to make this change persistent:

  1. Copy the system desktop file to user directory:
sudo cp /usr/share/applications/brave-browser.desktop ~/.local/share/applications/

  1. Edit the local copy:
nano ~/.local/share/applications/brave-browser.desktop

  1. Update all Exec= lines by adding the flag:
Exec=/usr/bin/brave-browser-stable --use-gl=desktop %U
Exec=/usr/bin/brave-browser-stable --use-gl=desktop  
Exec=/usr/bin/brave-browser-stable --use-gl=desktop --incognito

Results

  • Brave launches normally without system crashes

  • Normal CPU usage (no longer pegged at 100%)

  • Stable browsing experience

  • All launch methods work (menu, links, incognito)

Key Lessons

  1. Hardware aging reality: 2014-era GPUs are increasingly problematic with modern browsers due to evolving web standards and security policies.

  2. Targeted solutions over brute force: Using --use-gl=desktop provides better performance than completely disabling GPU acceleration with --disable-gpu.

  3. Wayland considerations: Older AMD GPUs often have compatibility issues with Wayland that don’t occur on X11, but switching display servers can introduce other complications.

  4. Browser blocklists exist for good reasons: GPU blocklists prevent system instability, crashes, and security vulnerabilities, even if they limit functionality.

Alternative Approaches (Not Recommended for Stability)

If you want to try forcing hardware acceleration despite the blocklist:

brave-browser --ignore-gpu-blocklist --enable-gpu-rasterization --use-gl=desktop

However, this may reintroduce system crashes and is not recommended for daily use.

Conclusion

While frustrating, the reality is that aging hardware requires compromises in modern computing environments. The --use-gl=desktop solution provides a stable, working browser without the system instability of forced hardware acceleration or the performance penalty of complete software rendering.

My Chromebook/Linux version crashes since Brave’s 1.82.166, also.

Interestingly, my installation of Microsoft Edge and Vivaldi are crashing with their most recent updates, also.

I think Chromium is the culprit … I hope some browser can work, soon.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.