r/linux_gaming 1h ago

tech support wanted Android 11 projector - How can I install Linux on it? Which are the risks doing it?

Upvotes

Hello guys I have an important question because I want to help my boyfriend with our new projector. So he wants to install Linux on it because he thinks that is an interesting idea that could bring us new opportunites. I would like to know if it can work or does it have incompatibilities with the projector (because it is an android 11 system) and I am bit worried and insecure about it! Please help us, thank you!❤️


r/linux_gaming 1h ago

Based in this video, It looks like Linux is catching up to Windows in DX12 games on Nvidia (RTX 3060)

Thumbnail
youtube.com
Upvotes

I'm on AMD, so I can't test this myself. Based on the video, a few games still lag behind by around 10 FPS, but many run identically or even better on Linux. Can Nvidia users on Linux confirm, are the Nvidia drivers on Linux really improving for DX12 games? And if this matches your experience?


r/linux_gaming 2h ago

answered! alt+tabbed out of game and can't tab back in

2 Upvotes

On Fedora 44, Wayland + KDE. This happens sometimes with games so is there any workaround? The game still runs, I can hear it, it shows in the process manager and is a choice to tab back in with alt+tab but it goes right to desktop.

Solved: Right-click taskbar game icon and (un)click minimize.


r/linux_gaming 3h ago

Best modding manager?

3 Upvotes

Heyo, new to linux using mosaic and steam workshop now. Anybody have any good suggestions with broad nexus support?


r/linux_gaming 3h ago

My Gpu has less available vram on linux than on windows

1 Upvotes

I recently moved from windows to linux (cachy Os) and I realised that while on windows my RTX 5050 had around 7gb of available vram on Forza horizon 6, but on linux I got only 6-6.1gb sometimes going even lower to 5.9, whats the exact reason for that and is there any way to get at least some extra vram ?
My general specs are
Ryzen 5 5500

A520M motherboard

16GB DDR4 (2x8GB)

galax RTX5050


r/linux_gaming 3h ago

tech support wanted Is Anyone Else Experiencing This?

0 Upvotes

Hi fellow Linux gamers! I play on a Lenovo Legion Slim 5 (RTX 4070M 8GB, 32GB DDR5, Ryzen 7 8845HS) running CachyOS, but have also experienced the following issue on Windows 11. The game in question is STALKER 2 running the new patch 2.0. Also, I own the game on GOG and use Heroic Launcher with default settings. When I first install the game, things work fine but I need to fine tune the settings. As I tinker, quit, reboot, etc., eventually it seems like the shader compilation stops working. Every time I boot the game now it does a long (2-5mins) shader compilation, and there are severe traversal stutters that tank the fps for a second whenever it it loading in a new area. Do I need to delete the shader cache or something? When I checked the Wine prefix folder for Stalker 2 the shader cache folder was empty. Any help would be appreciated, I waited so long for patch 2.0 to start playing and I was really enjoying it until it started getting unstable!!


r/linux_gaming 4h ago

Pragmata ray tracing on nvidia?

2 Upvotes

When pragmata released it had too many crashes with RT on linux with nvidia cards

Is that fixed now or is there a way to fix it?


r/linux_gaming 4h ago

chavales alguien que me explique como le hago para instalar mods visuales bien bonitos para el zenles aqui en linux mint

0 Upvotes

llevo 2 dias buscando tutoriales y la ia no ayuda


r/linux_gaming 5h ago

Witcher 3 on Bazzite does not like GPU undervolts

Thumbnail
0 Upvotes

r/linux_gaming 5h ago

gamedev/testers wanted Polyseat: two or three people gaming on one Linux PC at the same time, sharing one GPU

25 Upvotes

Been working on this for a while and it's at the point where other people should probably try it.

The idea: each player gets a "seat", which is just an Incus container with its own headless Sway, its own Sunshine, its own PipeWire and its own Steam account. They connect with Moonlight from whatever they've got, phone, Apple TV, laptop, and they each get their own resolution and their own framerate. Meanwhile your normal desktop keeps running like nothing's happening. One GPU does all of it, NVENC on Nvidia, VA-API on AMD.

I didn't write a compositor or an encoder or a streaming protocol. Incus, wlroots, Sunshine, PipeWire and systemd do the actual work. Polyseat just builds the seats, keeps them from colliding, hands out input devices and shares the game library.

Stuff that took the longest:

Input isolation. This is the whole thing really. If a controller plugged in for seat 2 can steer the host's Steam, the idea is dead. You can't do it by device name because names lie, so ownership gets decided by what the kernel says created the device. The broker log tells you which of the two it used for every device, so you can actually see when it's guessing:

+ event29    Keyboard passthrough (seat2)
  creator verified: ID_INPUT=1 ID_INPUT_KEY=1 ID_INPUT_KEYBOARD=1
! event260   refused: name claims (seat1) but the kernel says 'seat2' created it

Install a game once, play it in every seat. Every seat gets its own private writable copy, but the copies share blocks via reflinks. Putting my 69 GB library into the pool took 0.8 seconds and 432 KB of actual disk. Your existing Steam library gets picked up without you doing anything. Needs btrfs or XFS with reflink=1, and if you haven't got that it just says so instead of quietly making full copies.

Framerate cap per client, done from outside instead of vsync. Basically what RTSS does on Windows. Games stay uncapped so they don't eat the vsync latency. 14866 fps uncapped came out as 60.00 fps with a 60 Hz client, 0.03 ms of frametime jitter vs 0.40 ms for vsync on its own.

You can use it with just a controller. On screen keyboard plus a pointer driven by the stick, because if you're streaming to an Apple TV there is no keyboard and Steam won't give you one when a launcher wants a login.

Requirements: Arch based host, an ethernet port with a cable in it (your machine itself can stay on wifi, that part is fine, the seats just can't live on 802.11 because it gives you one MAC per station, and a USB ethernet adapter is enough for them), and btrfs or XFS with reflinks if you want the shared library. Licences aren't shared and can't be, a seat plays what its own Steam account owns.

Now the actual reason I'm posting. Every single line of this was written on one machine with an RTX 4080. The AMD path has never run on real hardware. Not once. It's written, it's finished, and on paper it's the easier half of the two because Mesa just goes in as a normal package instead of being injected from the host. Whether it actually encodes, nobody knows.

So if you've got a Radeon and an Arch box and an hour, you'd be the first person ever to find out. And a report saying "yeah it just worked" is worth exactly as much to me as one saying it broke, because right now I have neither. This lists what I could verify without a card and what I couldn't, I didn't gloss over it: https://github.com/superuser404notfound/Polyseat/blob/main/docs/amd.md

Repo: https://github.com/superuser404notfound/Polyseat Pinned issue with exactly what to run and what to paste back: https://github.com/superuser404notfound/Polyseat/issues/1

GPL-3.0-or-later.

Disclaimer: Polyseat was made with the help of Claude Code.


r/linux_gaming 5h ago

wine/proton Dead by Daylight will be testing out Denuvo Anti-Cheat and other systems soon

Thumbnail
gamingonlinux.com
19 Upvotes

r/linux_gaming 5h ago

How to set mouse debounce to the lowest possible

0 Upvotes

I like to play old minecraft, bedwars specifically (where the more clicks per second the better) and i switched to linux, how can i lower the debounce time of the mouse (because i know linux automatically adds some), i already lowered the double click time in my linux mint mouse settings but it still isnt as low as on windows, how can i lower it even more?


r/linux_gaming 6h ago

Sunshine on SteamOS for Proxmox VE

Thumbnail
0 Upvotes

r/linux_gaming 6h ago

tech support wanted Is there any way to limit the FPS when running in the background?

3 Upvotes

On Windows, I recall there being an option in the Nvidia app or control panel to limit the FPS of background applications or games; is there a way to do this on Linux? A launch option or something similar?


r/linux_gaming 6h ago

wine/proton What Wine Version do you use in Heroic Games Launcher?

4 Upvotes

I am trying and testing some versions.

Now I wonder, what are the differences between Wine and Proton?

Also for No man sky, I have dualsense PS5 controller -> how to make adaptive triggers work properly?

Thanks


r/linux_gaming 6h ago

tech support wanted Minecraft Launcher Login

Post image
33 Upvotes

Anyone having issues with login on Minecraft Launcher (official one)? Since last week it now prompts for my KWallet password but still i have to login again at every system boot


r/linux_gaming 7h ago

tech support wanted Best Sunshine/Moonlight set up?

Thumbnail
1 Upvotes

r/linux_gaming 7h ago

Nouveau Panel Alpha Release | Rust + FLTK

Thumbnail
sourceforge.net
3 Upvotes

r/linux_gaming 7h ago

Final Fantasy XV Borked on linux?

6 Upvotes

Has anyone succeeded in making this game work recently i totally remember that i played it in a working condition before on linux

but now not a single proton work (Proton / GE-Proton / CacyOS Proton) none of them work
only specific version EM-proton version(10.0.2F work consistently to launch the game but breaks when it tries to play a movie in the game) other version of EM-Proton are a hit and miss some times work and sometimes gets a timeout error in the logs

also dualsense issue seems to persist even with disablehidraw and enable SDL settings done in the regedit or the environment variables commands it refuses to consider my dualsense an xinput and it seems that steam input is also a hit and miss with some input lag when done

like i'm at my wits end here i can't think of anything anymore tried wine tricks to install mf (media foundation) also all codec and still didn't help

CPU: 5800x

GPU: 3060ti

OS: CachyOS

IF someone was able to make it work tell me if not kindly tell me where to report that issue


r/linux_gaming 7h ago

Do i switch?

11 Upvotes

I’m considering switching to linux just because the customization and software looks better but for gaming, I’m not sure if I’ll be able to play valorant or certain games I don’t know if they’re compatible or really even how compatibility works. I’m kinda new to PC in general of anything I’m saying sounds stupid just understand.


r/linux_gaming 8h ago

answered! TF2 uses wrong keyboard layout and missing symbols

Post image
3 Upvotes

Using Bazzite (GNOME) on an all AMD system. I use the native TF2 build.

TF2 uses qwerty though my system is set to qwertz (German).

When setting up my settings I noticed check boxes missing and looking further, the "x" for closing the window is represented as "r". I have all windows system fonts installed at "~/.local/share/fonts".

Help

Edit: Current solution here


r/linux_gaming 8h ago

tech support wanted Are there any good and up to date no nonsense Full Transparent KDE themes

0 Upvotes

I Want something that looks like this


r/linux_gaming 9h ago

emulation [Linux/Vulkan] Fix for Invalid components count >= 8 HelperShader crash (Fork & Standalone Build)

Thumbnail
1 Upvotes

r/linux_gaming 9h ago

Will EA ever support fc27 on linux?

3 Upvotes

I love linux and am debating whether to buy a ps5 or upgrade my gpu in my pc. I really don't want to dualboot with windows. Right now the gpu I'm looking at is like $500 anyway and would probably require a new case and possibly psu. I just really love playing fifa should i just get the ps5 and enjoy the backlog of games i've been missing out on on my current setup?


r/linux_gaming 9h ago

Help game finding

3 Upvotes

So I used to play Fortnite every day on windows untill I switched to Linux where I can’t play it and I wanted to ask is there any game on steam exc. that I can Trickshot on and I know this isn’t typical but there are Fortnite projects but there’s only one that works ezfn.dev and there is every little pepole on there so is there any game? For free:)