Feed aggregator

cracked games

Reddit Linux_Gaming - 2 Jul 2025 - 12:25pm

Do cracked Games work on Linux? If not, is there a way to make them work?

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

Need help with trying to get Thrustmaster gear to work on steam

Reddit Linux_Gaming - 2 Jul 2025 - 12:24pm

hello everyone I got myself simpleplanes on steam summer sale, I know it is about to die and simpleplanes 2 is about to be out but I couldn't wait, it works extremely well under proton hotfix with no configuration! that's not the issue, but then I wanted to pair my thrustmaster HOTAS set with t16000m and TWCS throttle, the game doesn't see them, and digging more into steam settings I've noticed steam doesn't even see them, I've tried turning on and off a lot of controller support settings that chatgpt told me to change but they did nothing, also chatgpt told me to open a wine/proton control panel with a command that I don't remember (mods please don't remove my post I just have fish memory I know this is a low-effort request but I'm trying my best) and then under that control panel proton also didn't see my hotas devices, I know they are supported kernel-wide because I can bind them to war thunder (native version) and they work perfectly with no issues at all, also after digging the internet for almost 2 hours while punching myself because I was so damn bored, I also found almost nothing, I am on pop!_os 22.04 LTS,

TL;DR

steam doesn't see my HOTAS

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

Mecha BREAK is out now on Steam - works on Steam Deck but blocks Desktop Linux

Gaming on Linux - 2 Jul 2025 - 12:01pm
Pretty much as expected, Mecha BREAK is out now and it's Steam Deck Verified but the anti-cheat is a real nuisance.

.

Read the full article on GamingOnLinux.

Steam RDR2 without Rockstar launcher?

Reddit Linux_Gaming - 2 Jul 2025 - 11:54am

Hi guys. I was gifted RDR2 on steam and I wanted to play it there but after installing the game it prompts about installing Rockstar launcher and other stuff like Epic API iirc.

I would rather just not install all that, you feel me? I like keeping my installation as clean as possible (possibly an OCD thing).

Is there a way to play the game without the additional launcher? If not, how can I remove all the bloat once I finish the game?

Thxx

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

GE-Proton 10-8 brings fixes for DOOM Eternal, Wuthering Waves and Wayland

Gaming on Linux - 2 Jul 2025 - 11:19am
Another smaller update to the GE-Proton compatibility layer for running more Windows games on Linux, SteamOS / Steam Deck.

.

Read the full article on GamingOnLinux.

AM4 upgrade path

Reddit Linux_Gaming - 2 Jul 2025 - 10:53am

I have a desktop I build some three years ago that actually does not need upgrading but I may do it anyway...

Motherboard: MSI B550-A PRO
CPU: Ryzen 5 5600X
GPU: Radeon RX 6700XT
RAM: 4x16GiB Corsair Vengeance DDR4 3200MHz

I am going to get a bare bone desktop I will use two of the above RAM sticks.

I don't really want to sell this hardware for scrap just because it's a few years old, so the optimal solution is to push the boundary of the platform.

As for the GPU, I am thinking about getting the Radeon RX 9070XT. Currently (today is 2 July) Amazon IE has the following:

As for the CPU, I could go with the one of the three below:

Do I need 16C/32T? No! I am pretty sure the 8C/16T fro the 5700X3D is WAY MORE than enough.But twice the cores and threads for €50? Is it worth? I know - lots more heat and I may have to upgrade my cooling solution to an AIO... But greed...

Other the evident technical stats, is the beefier CPU worth?

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

NVIDIA stable driver 575.64.03 released

Gaming on Linux - 2 Jul 2025 - 10:51am
NVIDIA are really doing the meme of incredibly helpful mobile app store changelogs with this one.

.

Read the full article on GamingOnLinux.

Anyone find a way to get Mecha Break working?

Reddit Linux_Gaming - 2 Jul 2025 - 9:48am

Mecha Break just launched, and just like in the 2nd beta, Steam Deck hardware seems to be whitelisted, while other Linux machines are locked out. The launcher will open, but the game won't open upon pressing play.

There is a single commenter on the Steam discussions who claims that it launches and plays fine, but nothing else.

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

Dealer's Choice

Reddit Linux_Gaming - 2 Jul 2025 - 8:34am

I've been working on this game for a couple months, and just released the 4th alpha version:

Dealer's Choice

Online Multiplayer Stud and Draw Poker, where the deal rotates and each new game allows a different player to select the variant.

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

[update] proton-shim: Many New Features!

Reddit Linux_Gaming - 2 Jul 2025 - 8:30am

Hello again everyone!

Last week I posted about my new package on the AUR, proton-shim, well do I have great news for you all.

I’ve taken in the feedback that was posted, had some extra ideas, and added many new features to proton-shim!

previous post: https://www.reddit.com/r/linux_gaming/comments/1lj9c8b/easily_run_exe_bat_and_other_modding_tools_in/

TL;DR: Proton-Shim lets you launch executables via Proton with AppID handling, desktop integration, and wrapper generation.

What is Proton-Shim?

Proton-Shim is a lightweight shell tool that lets you:
Run Windows executables (mods, mod managers, utilities) through Proton easily, with correct environment setup and AppID handling.
Create .desktop files or wrapper scripts for these executables, allowing them to be launched in any way you please.
Pass arguments, control AppIDs, and run non-Steam games/tools without fuss.

It’s designed for modders and tinkerers who want Proton’s benefits without manually messing with environment variables, launch options, or Proton paths each time.

New Features
  • .desktop file generation:
    • You can now use flags in the terminal to generate desktop files for friendly re-use of common executables
    • .desktop files can either be installed into your applications folder, so they can be accessed through your start menu, or in the working directory where you ran the proton-shim command
    • uses proton directly in the desktop file, not proton-shim, so proton-shim can be uninstalled and the desktop files should still work
  • wrapper script generation:
    • prefer to run a .sh file instead of a .desktop file? We can generate those too!
    • easier to edit or automate than .desktop files
    • Wrapper scripts use proton directly, not proton-shim, same benefits as desktop files in that regards
  • search appid by game name:
    • You can now type either an appid or game name to launch your executables with, game names are converted to the appropriate appid, if multiple names match you are prompted to pick one
  • [appid|gameName] is now entered after the flags (but before -- if present)
  • --dry-run
    • stops the command from being executed
    • still generates wrapper and desktop files if those options are present
  • -- arbitrary executable args
    • Now able to pass in args for the executable, everything after -- is directly passed to the executable
  • SIGINT logic - ctrl+c will cleanly exit immediately

also several bug-fixes. This utility is now verified with tests, while some bugs may trickle through, the base standard for any release has a high minimum bar automatically applied now

Why is this useful?

If you’ve ever tried to:

  • Launch Proton with a mod manager (e.g., ModEngine2) seamlessly.
  • Use non-Steam modding tools (FO4Edit, MO2, etc.) under Proton.
  • Add non-Steam games while maintaining consistent Proton environment setup.
  • Simplify wrapper or shortcut creation for tools you frequently use.

Proton-Shim handles all of this, letting you focus on gaming and modding, not Proton setup.

Try it out: https://gitlab.com/Wisher/ProtonShim/-/releases

AUR (Arch users): https://aur.archlinux.org/packages/proton-shim

Source: https://gitlab.com/Wisher/ProtonShim

I’d love feedback from the Linux gaming community:

  • What workflows would you like to simplify under Proton?
  • Any tools you want to integrate seamlessly?
  • What features would make Proton-Shim more useful to you?

Thanks for your time, hope some people find this useful and, good luck gamers!

submitted by /u/77wisher77
[link] [comments]

Best linux for gaming on old Nvidia card

Reddit Linux_Gaming - 2 Jul 2025 - 6:59am

Hello everyone, I have a computer with the following configuration: Nvidia GTX 560, Xeon E5-2640 v4, and 8GB DDR4 RAM. I plan to play games on it, but the graphics card is very old. So, which version of Linux supports it properly?

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

Ubisoft connect and steem on Linux

Reddit Linux_Gaming - 2 Jul 2025 - 6:16am

I want to switch to linux, but I face the problem that Ubisoft Connect does not see steam and vice versa, comes to the absurdity that I in Jubisoft click to download steam it starts and then says that there is no steam....

My brains are not enough here came here. Tried to put the base destrebutiv Ubuntu and linux, not there not there could not “friend”

Russian language
Хочу перейти на линукс, но сталкиваюсь с проблемой что юбисофт конект не видит стим и наоборот, доходит до абсурда то что я в юбисофт нажимаю скачать стим он запускаеться и потом говорит что нету стим...

Моих мозгов не хватает вот пришел сюда. Пробывал ставить базоые дестребутивы Ubuntu и линукс, не там не там не смог "подружить"

submitted by /u/Dry-Library6907
[link] [comments]

MDK2 HD not working? Any tips?

Reddit Linux_Gaming - 2 Jul 2025 - 5:50am

Basically title. Using steam, MDK 2 HD game. Textures won't load and is basically unplayable with experimental proton. AMD GPU, bazzite, 4k res.

Any ideas?

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

Old Games Running horrible On Linux

Reddit Linux_Gaming - 2 Jul 2025 - 3:44am

I was testing Black ops 2 (plutonium) on linux and i saw that i only got 90 fps with a rx5700 xt and ryzen 5 3600 and then testing in on widnows i got 600fps on same settings The same with other game (spec ops the line) getting unstable stutterting at 30fps just to run 400fps on windows After tweaks The hell im doing wrong

submitted by /u/Next-Thing-8948
[link] [comments]

Microsoft wants Windows to Lose Marketshare to Linux

Reddit Linux_Gaming - 2 Jul 2025 - 3:25am

Let me be clear, this post is in no way intended to discourage the use of Linux or recommendations for others to switch. Additionally, this is at best an educated guess borne of my own reasoning.

Consider for a moment, what does Microsoft lose if a percentage of it's Windows 10 user base with "incompatible" hardware move to Linux? I propose nearly nothing, and that they, instead, gain a distinct advantage.

Firstly, as Microsoft has offered free upgrades to existing Windows users for their past couple of releases, they make no money off those who already purchased a license to a prior release. Therefore, it is beyond a shadow of a doubt, in regards to my mind at least, that the "incompatible" hardware is primarily a thinly veiled ploy to get users to purchase new pre-built hardware so that pre-built computer vendors have to spend more on Windows licensing. But to that end, there's another side effect; a percentage of the bold or tech savvy will leave the Windows platform instead of purchasing new hardware or circumventing Microsoft's restrictions. At first glance, and in combination with the PR hit they suffered, it seems entirely moronic to risk the safety of their brand and presence, however I would argue that there is a significant advantage to upping the Linux marketshare -- in short, anti-trust. In view of the recent litigation faced by Google and Facebook over this very fault, I believe that Microsoft, likely, planned for Linux to become more prevalent as a result of their actions, so that they may avoid triggering a monopoly-based lawsuit. Furthermore, there likely will be a large number of secondary devices running Linux that are not a user's primary device, if only so that it remains usable to the user. If they can make it appear like they've genuine competition, whether it's from users' primary device or not, they may prevail in avoiding this round of big tech litigation.

Unfortunately in this view, the only one hurt by Microsoft's decision to cull support for millions of devices (that would otherwise run the OS without issue) is, of course, only the consumer. As well as creating what will effectively be e-waste in the process, as most are not savvy or care enough to install another operating system.

TL;DR, I believe Microsoft intended to push some users to Linux so that they can avoid anti-trust litigation.

submitted by /u/aShavedBear-itch
[link] [comments]

Rematch and another games troubble

Reddit Linux_Gaming - 2 Jul 2025 - 3:04am

Hello everyone. I installed linux today. There is someone who plays rematch or something similar. I have archlinux hyprland installed, but the game crashes after the splash screen

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

Setting up Sunshine/Moonlight

Reddit Linux_Gaming - 2 Jul 2025 - 3:00am

Hi,

I recently switched to Linux Mint from Windows and am trying to set up Sunshine/Moonlight to stream my PC from my steam deck. I've already got WOL enabled, and it works perfectly. Right up until I click play on desktop. My PC says it is streaming with Sunshine for about 10 seconds, then says it is paused. Meanwhile, on my steam deck, I get a black screen for about 10 seconds before getting kicked out, with the message "Connection terminated Error code: -1"

I have allowed all the necessary ports through my firewall and my router is still set up from when I was streaming my windows machine. I was looking on https://docs.lizardbyte.dev/projects/sunshine/latest/md_docs_2getting__started.html#kms-capture and i believe this is my issue.. but I'm a noobie and can't figure out how to run the commands to enable KMS capture and/or X11 capture. Both were giving me error messages, and now do nothing at all... Presumably because the (which sunshine) parameter is supposed to be something else?

Maybe I'm off base entirely, but I can't seem to figure this out. Any ideas?

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

Thinkpad T530 Intel 4000 Proton gaming

Reddit Linux_Gaming - 2 Jul 2025 - 2:55am

Hey trying to run C&C Remastered and Magic The Gathering Arena on my Linux Mint T530.

I have both installed through Steamand Proton enabled to run all other titles.

When I start either game I get an initial loading and then either a crash or nothing. C&C will say it's writing a crash report but never finished, while Arena just does nothing.

Appreciate any advice!

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

Pages