Other News about gaming on Linux
Gaming rig for $1200?
Any recommendations for Linux gaming rig with a 1200 budget? Pc and screen. I don’t mind building it or buying already assembled.
submitted by /u/datayoda[link] [comments]
Is cs2 on linux now good?
I used arch linux on my main pc (RTX 3050 8GB + i5 9600k) and performance was not that great i was getting around 120fps. But i deleted linux after using it for 2 monthes bcz i wanted some space for editing but now i am thinking of installing it again because i had great experience with arch but only the cs2 ran poorly so is it still same or is it better because i am seeing a lot of videos saying its now better. (I want more fps bcz i am on 165hz screen now)
submitted by /u/TechnicalParsnip1928[link] [comments]
How to adjust mouse sensitivity to match windows?
I'm using mint xfce and wondering what setting I can adjust to make the default sensitivity as close as possible to windows.
submitted by /u/nachos-bellgrande[link] [comments]
Controller not detected
Hi, I am a Linux user for quite some time and I have no problem playing any game. I usually play with controllers and have a good collection of them. I recently purchased the Bigbig Won Blitz 2 but it does not work. I have seen that lsusb detects it as an Xbox 360 controller but the only button that works is the home button and it takes a screenshot. It seems that the controller is detected as if it were a mouse.
Has anyone else had something similar happen with a controller and do you know how to force it to detect it as controller?
Thanks
submitted by /u/b4nerj3e[link] [comments]
Erro trying to start CS
Hello, I'm new to Linux and to start using it I chose the Zorin OS distribution.
I'm having a problem, when I try to start CS it completely crashes my laptop, I can't do anything anymore, not even ALT + F4 works, does anyone know what it could be and how to solve it? I've tried uninstalling and reinstalling both Steam and CS, but it didn't help at all.
The laptop I use is a Dell G15 5530 I don't know if this can help in any way
submitted by /u/R3IMENIC[link] [comments]
Thinking on switching
I know that the rules say I shouldnt ask this, but it's a bit more delicate decision... Right now I'm running Windows 11(bad decision but no more updates for 10..) Which I installed a bit more than half a year ago, at first it felt smooth, better than 10, but as i started using my computer more and more, it started running worse, I had to OC my CPU to at least start beamng.drive while on W10 I didn't have any problems. My computer is pretty outdated, here are the specs: i5 2500k @4.5ghz, GTX 970 4GB Zotac, 16GB DDR3 1600 MHz, 512gb Intel m.2 SSD, 2TB HDD. I have heard and watched videos on Linux running on pretty much anything, and it also having way less needs on resources. I don't have any experience with coding but I do play around with hardware, root phones and repair if need be in my spare time. So should I switch or just reinstall windows and try to keep it lite with my apps? I want to use Linux Mint if I do switch.
submitted by /u/Plane_Enthusiast[link] [comments]
What is your experience of Steam Recording?
I haven't seen much feedback on Steam Recording anywhere from Linux users and I'm curious about people's experiences with it. For me it records just fine but exporting clips doesn't work at all.
submitted by /u/herd-u-liek-mudkips[link] [comments]
Steam downloads freeze, resume on repeat. (Fedora 40)
Yesterday i tried out Linux again and went with Fedora, because i'm used to it and already use it on a regular basis on my school laptop.
I've been trying to install games on my PC, but i've been having a couple of issues:
- The Steam download freezes after a couple seconds, then it continous again, freezes and continous. I'm installing on an External SSD (connected through a UGreen M.2 Enclosure)
- Speeds are slow, this is partially because of the first issue, but when installing games even when its not freezing, it gets up to 700 Mbit/s, my internet is 2Gbit/s.On Windows i do get the full bandwith downloading games, about 1.7Gbit/s. (700Mbit is not slow, but its not what im suppost to get).It does go up when i enable HTTPS2, but not by much.
I hope someone is able to help with this, Fedora has been good in the past with the same PC, but ever since about 6 months ago when i tried it, Steam has had issues.
submitted by /u/ILikeDeleted[link] [comments]
Fractalus: a remake on "Rescue on Fractalus", a classic game developed by Lucasfilm Games [VR, playable]
Help sober doesn't work
so basically when sober starts its setup instead of showing a window it takes a screen shot of the top left of my screen any ideas on how to fix this
BTW i am using Linux mint 22
-----
submitted by /u/COPYABLEHYDRA16[link] [comments]
Pushed a new build of the demo of Shadows of the Afterland - need Linux feedback
I develop on Linux myself, and I know the game runs well on my system (Ubuntu 24.04) as well as Steam Deck and Ubuntu 18.10 (that I run on a VM to test old-ish distros).
I recently revamped the engine, moving from OpenSceneGraph to SDL. The game runs slightly faster now, and the codebase is much simpler (and I don't have dependencies on deprecated libraries anymore). I use the Steam Linux Runtime, which should help with cross-distro (and old distro) support, but one can never be 100% sure, and I'd rather iron out issues while in the demo stage, rather than after release. So if you use something else than Ubuntu and enjoy adventure games, give the demo a try and let me know whether it starts and runs smoothly on your system.
Here is the Steam link to get the demo: https://store.steampowered.com/app/2506100/Shadows_of_the_Afterland/
Your feedback is appreciated, even if it's just "I ran it on gentoo and it works".
Geeky details
I shared a while back the stack I used to build my games, and as you can imagine, it has changed a bit with this recent update, so in case there are other developers here who are curious, here is the latest:
I now do all the video rendering directly with SDL (the 2D API, although I plan to move to SDL3 and use the GPU API instead, to support shaders). I use SDL_image to load all the sprites (in png format) and SDL_ttf for font rendering. Audio also goes through SDL, although I built a small mixer on top.
I also use libwebp for the thumbnails when saving games. It offers great quality/size ratio (much better than png) and it supports lossy compression, which is alright for just a savegame thumbnail. I want the savegames to be as tiny as possible so I can auto-save frequently without hammering the disk (or the SD-cards on portable devices).
I use V8 as a super fast interpreter of Javascript (that's the scripting language supported by my engine). It's blazingly fast, and I almost never drop a single frame because of the garbage collector. That said, I want to try QuickJS as an alternative JS engine. I know it isn't as fast as V8, but it should offer more predictable performance (and compiles way faster, and produces way smaller executables).
And since I support Javascript for the scripting of games, I went with React for the game UI. I don't use react-dom, since there is no DOM (or browser), but my game still defines the UI using JSX, which I personally find very convenient.
Only on dev builds, I also link against ffmpeg (libavcodec) to be able to capture pixel perfect videos of the game, with no frame loss, tearing, etc. And also on dev builds, I compile the engine as a native node module, so I can run it through node.js and debug the scripts with Chrome dev tools. That saves me from building my own debugger.
If you want to know more about the internals, leave some questions and I'll reply as soon as I can.
submitted by /u/el_ryu[link] [comments]
umu launcher setup script
[link] [comments]
Set comfort level to maximum with the Mechanism Gaming Pillow for handhelds
.
Read the full article on GamingOnLinux.
Using HDR via KDE-wayland in arch. How do I get HDR working in Steam?
Im attempting to play Overwatch2 in Steam with proton ge9-16. HDR is not being recognized in the game. I enabled the HDR option in wayland with the short line in /etc/environment for nvidia. Anyway, Im sure I have to integrate HDR compatability into Steam/Overwatch now, but I can not find a solution.
I mention the nvidia because I am aware gamescope is not ideal with my GPU (nvidia 4090). Is there an alternative to gamescope for nvidia users? How can I approach this?
arch linux
submitted by /u/DOGlan-glory[link] [comments]
SKSE through Lutris
I've got Lutris running installs of Skyrim as well as MO2. I installed MO2 by running an exe through the Skyrim Wine prefix so they share the same folder structure. I then manually configured a new "game" in Lutris that basically points to the MO2 exe.
All works well for both with the configs I've got. MO2 runs well, and SKSE runs through MO2 no issues at all.
My issue is, when I try and add SKSE into Lutris the same way I did for MO2, SKSE launches as if it's vanilla Skyrim. No MO2, no SKSE and no game saves, even though it's pointing to the exact same SKSE exe that MO2 is pointing to.
Is there a step I'm missing to have SKSE run normally without having to launch MO2 every time?
I'm running Fedora KDE 40. Kernal: 6.11.4-201.fc40.x86_64 with Wayland and KDE version 6.2.2
submitted by /u/TyrusRose[link] [comments]
Albion Online 'Horizons' update brings a customizable HUD and a more dynamic world
.
Read the full article on GamingOnLinux.
Sign in issue (Apex Legends)
I just installed Apex Legends on my Linux Mint and it seemed that I couldn't sign in because of Steam Overlay. The error message was "Sign in to EA required Steam Overlay to be enabled" or something like that. The problem is I already enabled Steam Overlay. After launching Apex Legends, there's always a popup banner with Apex Legends picture iykwim in split second showing "loading etc" and I could actually see Steam Overlay loading the EA sign-in website in the small popup banner itself. TIA
- Steam: Proton 9.0-3
- Linux: Mint 22 Cinnamon
- Driver: Nvidia 535
[link] [comments]