this post was submitted on 29 Aug 2023
358 points (95.4% liked)

Linux Gaming

19051 readers
3 users here now

Gaming on the GNU/Linux operating system.

Recommended news sources:

Related chat:

Related Communities:

Please be nice to other members. Anyone not being nice will be banned. Keep it fun, respectful and just be awesome to each other.

founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] Llewellyn@lemm.ee 3 points 2 years ago (3 children)

in some cases I feel like Linux actually performs better than Windows on the same hardware

What are those cases?

[–] SaltyIceteaMaker@lemmy.ml 6 points 2 years ago* (last edited 2 years ago) (1 children)

Im may not be the person asked but i can still give you 1 particularly impactful case: minecraft. Now Minecraft (java) has native linux support so this isn't valve's doing but i get a massive performance lift in minecraft. On my old pc on windows i had barely 50 fps. On Linux i had 80 that's 30 fps more with the exact same mods and settings

[–] radioactiveradio@lemm.ee 6 points 2 years ago* (last edited 2 years ago) (2 children)

Windows actually can run the games faster if there's wasn't so many BS Microsoft ad services and antiviruses running in the background holding it back. I have a dual boot setup with a lite version of windows packaged by some Russian guy i don't trust and it runs things was faster than the normal MS windows.

[–] SaltyIceteaMaker@lemmy.ml 3 points 2 years ago (1 children)

I love that so many people rather use a sus version of windows than actual windows... on an unrelated note where would one aquire such a windows version? Asking for a friend

[–] theshatterstone54@feddit.uk 3 points 2 years ago (1 children)

Just use chris titus' debloat tool, and don't bother with sus windows. Link: https://github.com/ChrisTitusTech/winutil

[–] SaltyIceteaMaker@lemmy.ml 1 points 2 years ago (1 children)

Does it also remove all the spayware? Sorry i mean "telemetry"

[–] theshatterstone54@feddit.uk 3 points 2 years ago

Yes, it removes the spyware. You can call it telemetry if you want.

[–] jerkface@lemmy.ca 2 points 2 years ago

...but trust Microsoft even less, no doubt. Russian guy might be fucking with you, but MS definitely is.

[–] boonhet@lemm.ee 4 points 2 years ago

I believe directx 10 games run better on dxvk or whatever, to the point that people recommend it on Windows for some games (GTA IV)

[–] jannem@fosstodon.org 2 points 2 years ago (1 children)

@Llewellyn
File system operations are often faster. This is in part due to Windows doing more; it has a more complex and more flexible permissions system.

Spawning threads and processes is also normally faster. Linux apps thinks nothing of spawning lots of processes with abandon, then have them opening and closing files all over the place. If you move it straight over to a Windows machine it will tend to run very badly as a result.

[–] entropicdrift@lemmy.sdf.org 1 points 2 years ago

In addition to the differences in permissions and kernel behavior you've pointed out, there's also a huge difference in the filesystems themselves.

Windows' default filesystem is NTFS. Linux's is EXT4.

EXT4 is significantly more modern (2008 vs 2001) and featureful (no fragmentation, handles small files much better, journaling, etc) than NTFS.