Linux OS - Gaming Edition Thread

What Distro Do You Use?

  • Bazzite

    Votes: 0 0.0%
  • CachyOS

    Votes: 2 66.7%
  • Fedora

    Votes: 0 0.0%
  • Nobara

    Votes: 0 0.0%
  • Manjaro

    Votes: 0 0.0%
  • Pop!_OS

    Votes: 0 0.0%
  • SteamOS

    Votes: 0 0.0%
  • Mint

    Votes: 0 0.0%
  • Ubuntu

    Votes: 0 0.0%
  • Debian

    Votes: 0 0.0%
  • SUSE

    Votes: 0 0.0%
  • Other

    Votes: 1 33.3%

  • Total voters
    3

Araxen

Golden Baronet of the Realm
10,865
8,317
I figure the poll could use at least a refresh if not the thread itself. Gaming has come a long way on Linux since the OG Linux thread was first started in 2016.

I got a 2TB M.2 drive the other day to add to my gaming PC, and I'm starting to go through which distro I want to use. I'm leaning towards Fedora since they support secure boot, but I'm giving CachyOS a shot and some others. I've used Linux in the past so Bazzite being immutable doesn't sound appealing to me. I'm by no means an expert on Linux, but I'm not a newbie either.
 

Araxen

Golden Baronet of the Realm
10,865
8,317
I installed CachyOS this week, and I'm going to stick with it. Everything runs without issues right now. I even got secure boot installed and working. It was pretty easy. The main game I play is Marvel Rivals, and I take about a 20 fps hit on Linux. FSR4 support works in Windows, but not on Linux. That is pretty disappointing and annoying since AMD has much better support on Linux than NVIDIA. I play OW2 from time to time still and that game run flawless, but it's an older game so that is to be expected.

My next project is learning how to configure the lights on my pc with openrgb.
 
  • 1Like
Reactions: 1 user

Janx

<Gold Donor>
7,932
24,022
I installed CachyOS this week, and I'm going to stick with it. Everything runs without issues right now. I even got secure boot installed and working. It was pretty easy. The main game I play is Marvel Rivals, and I take about a 20 fps hit on Linux. FSR4 support works in Windows, but not on Linux. That is pretty disappointing and annoying since AMD has much better support on Linux than NVIDIA. I play OW2 from time to time still and that game run flawless, but it's an older game so that is to be expected.

My next project is learning how to configure the lights on my pc with openrgb.
AMD's FSR 4 is now functional on Linux for RDNA4 GPUs, with support enabled through updated Mesa drivers and specific Proton configurations. Users with RDNA4 cards, such as the Radeon RX 9000 series, can enable FSR 4 by installing Mesa 25.2 or later from testing repositories and setting the environment variable PROTON_FSR4_UPGRADE=1 via Steam launch options. This setup allows FSR 4 to be used in games that support it, with the feature being fully implemented for RDNA4 without requiring workarounds.

Also this. Gonna have to try it myself on a 2nd PC I built with a 9070xt.

 
  • 1Like
Reactions: 1 user

Kharzette

Watcher of Overs
5,883
5,860
So the only reason I have a windows partition at all is VRChat. Every few months I'll look around and see if any progress has been made on linux drivers for my crappy old oculus. It looks like everything can work now with a thing called Monado.

There are packages for it on the AUR but almost none of them build properly. They all link to openVR which hasn't changed in years and uses gcc14. The newer stuff all builds with 15 and there's some kind of linker optimization that makes them incompatible.

I ended up editing the PKGBUILD of the failing packages thusly:

Diff:
diff --git a/PKGBUILD b/PKGBUILD
index 5000f26..720a2f2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -62,6 +62,7 @@ prepare() {
 build() {
     cmake -B build -S "${pkgname}-v${pkgver}" \
         -G 'Unix Makefiles' \
+               -DCMAKE_C_COMPILER=gcc-14 -DCMAKE_CXX_COMPILER=g++-14 \
         -DBUILD_DOC:BOOL='ON' \
         -DCMAKE_BUILD_TYPE:STRING='None' \
         -DCMAKE_INSTALL_PREFIX:PATH='/usr' \

Not sure if it works yet, but everything builds and installs. I was driven from my VR room by cold, but I will try it out tomorrow.
 

Kajiimagi

<Aristocrat╭ರ_•́>
3,848
7,299
So the only reason I have a windows partition at all is VRChat. Every few months I'll look around and see if any progress has been made on linux drivers for my crappy old oculus. It looks like everything can work now with a thing called Monado.

There are packages for it on the AUR but almost none of them build properly. They all link to openVR which hasn't changed in years and uses gcc14. The newer stuff all builds with 15 and there's some kind of linker optimization that makes them incompatible.

I ended up editing the PKGBUILD of the failing packages thusly:

Diff:
diff --git a/PKGBUILD b/PKGBUILD
index 5000f26..720a2f2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -62,6 +62,7 @@ prepare() {
 build() {
     cmake -B build -S "${pkgname}-v${pkgver}" \
         -G 'Unix Makefiles' \
+               -DCMAKE_C_COMPILER=gcc-14 -DCMAKE_CXX_COMPILER=g++-14 \
         -DBUILD_DOC:BOOL='ON' \
         -DCMAKE_BUILD_TYPE:STRING='None' \
         -DCMAKE_INSTALL_PREFIX:PATH='/usr' \

Not sure if it works yet, but everything builds and installs. I was driven from my VR room by cold, but I will try it out tomorrow.
Will it work with an Oculus Quest 2 ? I have one here gathering dust you can have if it will.
 
  • 1Like
Reactions: 1 user