Other News about gaming on Linux

Games suddenly have broken shadows and reflections

Reddit Linux_Gaming - vor 41 Minuten 59 Sekunden

I was playing some games like Crash Bandicoot 4 and REPO and the graphics looked perfectly fine, then I started playing TABS and it felt somewhat deepfried. The next day when I tried to play Crash 4 the shadows and reflections had broken into giant squares, same thing with REPO and it happens with DOOM Eternal.
Any idea as to why this happened?

Arch Linux 6.15.6-arch1-1
NVIDIA RTX 4060
Ryzer 5 5600G
KDE Plasma Wayland

submitted by /u/MatteoIppolito
[link] [comments]

¿Qué distribución es la más adecuada para jugar en una PC con GPU que no es compatible con Vulkan?

Reddit Linux_Gaming - vor 1 Stunde 46 Minuten

Tengo una PC Dell Latitude E6440 con una GPU Intel HD Graphics 4600 y no es compatible con Vulkan, lo que me genera numerosas dificultades al tratar de utilizar Wine o Proton para los videojuegos. ¿Qué podría hacer?

submitted by /u/101mdtb
[link] [comments]

amd 6800xt slow performance

Reddit Linux_Gaming - vor 3 Stunden 12 Minuten

Hi, I am using Fedora 42 and amd 6800xt,

3D_FULL_SCREEN* when cat /sys/class/drm/card1/device/pp_power_profile_mode

I have a 2560x1440 resolution.

Dota 2 is running around 50fps.

What am I missing?

=(

kernel version 6.15.4-200.fc42.x86_64

mesa: 25.0.7

submitted by /u/VargasIdiocy
[link] [comments]

Fallout New Vegas + Mod Organizer 2 Issues

Reddit Linux_Gaming - vor 3 Stunden 52 Minuten

Fallout New Vegas

So, in my infinite capacity for masochism, I decided to try and install Mod Organizer 2 for Fallout New Vegas. Way back in the Windows days (3 weeks ago), I used MO2 to heavily mod FO4 (shoutout to Kinggath!) and it was no problem. I'm following a combination of a video ("How to Install & Use Mod Organizer 2 on Linux" by Intelligent Gaming") and a forum post on Nexus Mods ("Using Mod Organizer 2 on Linux the Right Way") to guide me and I've gotten as far as using ProtonTricks to install vcrun2022. The problem is that I get a popup warning that there is a SHA256 mismatch. Should I try another vcrun, like vcrun2019 or something?

(Please understand that I am very green when it comes to Linux.)

I'm on Linux Mint Cinnamon

System:

Kernel: 6.8.0-63-generic arch: x86_64 bits: 64 compiler: gcc v: 13.3.0 clocksource: tsc

Desktop: Cinnamon v: 6.4.8 tk: GTK v: 3.24.41 wm: Muffin v: 6.4.1 vt: 7 dm: LightDM v: 1.30.0

Distro: Linux Mint 22.1 Xia base: Ubuntu 24.04 noble

CPU: Intel Core i9-9900K

Graphics:

Device-1: NVIDIA GA106 [GeForce RTX 3060 Lite Hash Rate]

https://preview.redd.it/tw2fozzqoccf1.png?width=805&format=png&auto=webp&s=832866a75dd3a8fd1f486ea83ec58cd6fb4afa8f

submitted by /u/Ostacia
[link] [comments]

Linux gaming migration happening

Reddit Linux_Gaming - vor 3 Stunden 55 Minuten

What are your thoughts on the imminent migration for new gamers into the Linux community?

Especially with the impending end of Windows 10 support.

submitted by /u/More-Cabinet4202
[link] [comments]

Tony Hawk 3 + 4 (Foundry Level Unplayable - Graphical Glitch)

Reddit Linux_Gaming - vor 4 Stunden 17 Minuten

Anyone else having visual artifacting on the Foundry level in the Tony Hawk 3 + 4 remake? Other levels work just fine but on this level everything starts looking fine, but when I start moving and look at certain angles black square textures start enclosing on the screen. It looks like mist effect that is missing a texture or something, but either way after a second or two my entire screen is black and becomes unplayable.

I tried different settings, windowed/fullscreen mode, proton experimental, ge-proton, and so on. But nothing seems to fix it. I also looked on ProtonDB but it seems like others are having no issues (on Steam Deck at least).

submitted by /u/thechief120
[link] [comments]

Let's get that NTSYNC stuff enabled! (small guide concerning Ubuntu-based distros)

Reddit Linux_Gaming - vor 4 Stunden 35 Minuten

GE-Proton10-9 was released, enabling us to eventually use NTSYNC in games.

By this, we have the basis to use what's already present in our kernel since ~6.14: https://github.com/GloriousEggroll/proton-ge-custom/releases/tag/GE-Proton10-9

The author says:

Enable with PROTON_USE_NTSYNC=1

NOTES:

  1. Your kernel must be patched with ntsync patches. If your system does not have /dev/ntsync then your kernel does not have the patches required to use ntsync.

  2. Some applications, mostly 32 bit, may also need PROTON_USE_WOW64=1 when using ntsync

To get up an running though, we need to check if a) your kernel supports NTSYNC, b) if the module is present plus c) if it's loaded at boot (or at all).

a) Does my kernel support it?

In short, if you are on kernel 6.14 and later, chances are good. (Source: https://www.phoronix.com/news/Linux-6.14-Char-Misc-NTSYNC)

To check, you could nano this file: nano /boot/config-"$(uname -r)"
And check for the presence of this line: CONFIG\_NTSYNC=m

If you don't even find the "ntsync" phrase, you are out of luck with the current kernel of yours. You can install a later one with tools like this: https://github.com/bkw777/mainline

NOTE: Be aware, installing other kernels kicks you out of the current update cycle of your distro in regard to, well, kernel patches. You then have to take care of kernel updates yourself, always, from now on, unless you return to what the distro issues as default or "HWE" kernel.

b) With kernel support being ensured, we can check for the presence of the module:

find /lib/modules/$(uname -r) -name ntsync.ko

should yield some output like this /lib/modules/6.15.6/kernel/drivers/misc/ntsync.ko

(if the numbers are different, it doesn't matter. If there's no output at all, there's no module around though, which might lead you back to point a)

For more info on the module, you can check with modinfo ntsync

c) Checking if the module is already loaded (most likely not) or if it can be loaded

First things first, check for it being loaded via checking the presence of this directory: ll /dev/ntsync

(if the output throws an error, it's not present for now, but might be later on)

Case 1: If you already see the directory being present, you are done and can follow up with the instructions from the GE-Proton author which I quoted at the top.

Case 2: If you don't see the directory yet but have managed to succeed in the points a and b from before, just read on.

For manually loading the module, you can simply issue sudo modprobe ntsync

Then check with ll /dev/ntsync again and also see if lsmod | grep ntsync now finds the running "ntsync" element.

If you want to test your games now, you can do so, but mind the above instructions (at the top of this post) on how to tell the runner that you want to use NTSYNC.

To unload the module (and, in turn remove the /dev/ntsync dir), use sudo rmmod ntsync

With these commands, you can already test the impact NTSYNC will have for the game you bave in mind.

Bonus: Making sure to automatically load/enable the NTSYNC module at boot

The folder in question is /etc/modules-load.d where we have to create a file which tells the system which modules to load at boot. We should pick a proper name to later being able to determine what the file does and why it's needed. After all, you might forget about it or have other users around.

So we create a properly labelled file via sudo nano /etc/modules-load.d/ntsync.conf

With these contents (one line, no extra characters)

ntsync

Once that's done, you should reboot and see if /dev/ntsync is already around. If it is, the module got loaded properly. You can use ll /dev/ntsync for that.

Removal:

If you want to remove the auto-loading method again for whatever reason, you can do so via deleting the one file we've created: sudo rm /etc/modules-load.d/ntsync.conf

After a reboot, everything is back to default and no NTSYNC module will get loaded.

Side notes:

At some point, some distros might incorporate their own ways of auto loading the module. The worst thing to happen might be that the system tries to load the same module twice, which won't work. The first instance will likely win out.

Anyhow, I would recommend to take note of this change you've made to your system. Just to be able to remove the one file we've created and let the distro's default take over, if they ever implement the auto loading of NTSYNC.

But until then, "our" method is a proper one to have around and should yield you the vital NTSYNC module presence.

submitted by /u/28874559260134F
[link] [comments]

Has anyone got spore to work on linux mint?

Reddit Linux_Gaming - vor 4 Stunden 36 Minuten

When I turn it on proton 4.11-13 I see Configuration Script failed [2000] and then it goes to a black screen. I clicked esc to get out of it. I can't seem to find that much information on the internet about spore on linux mint. I heard people talk about in on manjario and arch linux but not linux mint.

submitted by /u/Majestic_Bat7473
[link] [comments]

Flawless Widescreen through steamtinkerlaunch (STL)

Reddit Linux_Gaming - vor 4 Stunden 57 Minuten

Title basically. I have steamtinkerlaunch installed through ProtonUp-QT. I have God of War set to launch using STL as the compatibility layer, but I cannot find an option for Flawless widescreen. I was told it is included with STL? Any help would be appreciated.

Not using Arch, by the way.

submitted by /u/Dingy_Beaver
[link] [comments]

Fitgirl Repacks on Linux

Reddit Linux_Gaming - vor 5 Stunden 52 Sekunden

Has anyone gotten fitgirl repacks to work on Linux?

Using Linux Mint specifically.

submitted by /u/Aretebeliever
[link] [comments]

Fps is table, but the game is not smooth

Reddit Linux_Gaming - vor 6 Stunden 24 Minuten

I can't really tell which is the root issue for this, however this problem isn't seen on windows from what I can tell, so literally any game unless it's super old (like from early 2000s) has the stable 74FPS if I cap it, however sometimes it feels like fps drops to 30 tho on the graphs everything is still on 74 just like before. Now I think it might also be a monitor issue, I'm on nobara Linux plasma using monitor with freesync, tried disabling it, still same thing, the configuration of the PC is RTX 3060TI, Ryzen 7 7900x3D, 32GB RAM. Doesn't seem to be an asset streaming issue as well, I launched the same games on both SSD and HDD, the result is the same

submitted by /u/NasralVkuvShin
[link] [comments]

Genshin Impact, Zenless Zone Zero, Valorant on linux

Reddit Linux_Gaming - vor 6 Stunden 56 Minuten

Hello everyone, I'm wondering if I can install and run Genshin, ZZZ and Valorant on Linux? Which distro is better to use? And won't this get me banned? I'm a newbie just switching to Linux from Windows. And just by the way, are games on Linux easier for a computer or do they stay the same?

submitted by /u/Amazing_Room1320
[link] [comments]

Is vkBasalt still a thing?

Reddit Linux_Gaming - 11. Juli 2025 - 23:54

vkBasalt was supposed to be kind of a shader thing like ReShade is for Windows. There is ReShade for linux in form of a script (reshade-steam-proton), but both projects haven't been updated in 2 years.

I still use reshade-steam-proton, and it still works, but i wonder what happened with vkBasalt.

Cause i never got it to work (years ago when ti was active), and now it seems abandoned. Is it merged into something maybe?

Anyone know anything about it?

submitted by /u/Veprovina
[link] [comments]

adding my ssd as game storage (debian)

Reddit Linux_Gaming - 11. Juli 2025 - 23:50

i just moved over to linux so im still new to understanding but im trying to use my external ssd as a drive recognised by steam but whenever i click select for the drive, it closes the panel without doing anything. so far i have mounted the drive and reformatted it but still nothing happens when i try to use it.

https://preview.redd.it/kguke425gbcf1.png?width=1919&format=png&auto=webp&s=a7848e113795f5316d75953040143145d5f927c6

submitted by /u/Sufficient_Bike6633
[link] [comments]

Has anyone benchmarked latency differences in Standard, Zen, Cachy, and Xanmod Kernels?

Reddit Linux_Gaming - 11. Juli 2025 - 23:50

Is there any latency comparison between the most popular kernels? Standard, Zen, Cachy, Xanmod? I often see benchmarks focusing on framerate and 1% lows, which are definitely important, but latency is almost always left out in those comparisons.

submitted by /u/MiddleFancy
[link] [comments]

Slow mouse movements not detected when not using native res

Reddit Linux_Gaming - 11. Juli 2025 - 23:37

When trying to run cs2 with stretched res I have this wierd problem on Wayland where if I am holding an angle or just generally moving the mouse slowly, the mouse movements will not get recognized.

This does not seem to happen when using native or for some reason when on full screen windowed (fps take a huge hit, can't really play on that)

I have tried using gamescope to set the resolution and also setting it to 4:3 on the whole system but that doesn't seem to work either

I am on NixOs Gnome (Wayland). Any help is appreciated, thanks!

submitted by /u/United_Reflection_32
[link] [comments]

GE-Proton10-9 Released

Reddit Linux_Gaming - 11. Juli 2025 - 23:21
GE-Proton10-9 Released

Repository: GloriousEggroll/proton-ge-custom · Tag: GE-Proton10-9 · Commit: c7b8677 · Released by: GloriousEggroll

  • Added ntsync support:

    Enable with PROTON_USE_NTSYNC=1

    NOTES:

    1. Your kernel must be patched with ntsync patches. If your system does not have /dev/ntsync then your kernel does not have the patches required to use ntsync.
    2. Some applications, mostly 32 bit, may also need PROTON_USE_WOW64=1 when using ntsync
  • Added FSR4 upgrade support via PROTON_FSR4_UPGRADE=1 (auto upgrades from amd directly https://download.amd.com/dir/bin/amdxcffx64.dll)

  • Added fixes from upstream for flicker/rendering issue when using wine-wayland

  • Refactored a lot of the patches section and cleaned up outdated or merged patches

  • Update wine-wayland patches

  • Updated wine to latest bleeding edge

  • Updated dxvk to latest git

  • Updated vkd3d-proton to latest git

  • Imported all upstream proton changes

  • protonfixes: added a fix for winetricks wget gnutls failing inside fex

  • protonfixes: add fix for sifu freeze (thanks UsernamesAreNotMyThing)

submitted by /u/Alatarith
[link] [comments]

My performance is a lie.

Reddit Linux_Gaming - 11. Juli 2025 - 23:11

You heard it here. My performance in Linux is a lie. How dare I have better numbers across the board compared to W11. Haha but fr. Anyone else get this regularly when joining a conversation on games? I find it funny but also I really wish this wasn't the stigma with Linux. I am on a full AMD build of course. I'm aware it's not as good with Nvidia. But man I have 20-30% gains sometimes. Anyone else? Or is my GPU/CPU just god tier and beyond any other benchmarks on the Internet. Because a lot of benchmarks don't even show the gains I see. For reference I'm rocking a 7900xt 7800x3d 32gb ram Cachy os

submitted by /u/Waste_Display4947
[link] [comments]

Seiten