There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

linux_gaming

This magazine is from a federated server and may be incomplete. Browse more on the original instance.

KillingTimeItself , in Riot official response about League of Legends on Linux for Vanguard anti cheat

“linux does not allow us a good enough ability to confirm boot state”

Skill issue, L for riot games.

Realistically, if this is true, it’s because of security. Shocker on that one really. Also, there are probably only 800 players on linux because the anti cheat doesnt fucking work. But that doesnt count apparently

melpomenesclevage ,

Yeah I didn’t know I could play it.

KillingTimeItself ,

i was convinced that LOL didn’t boot under linux, im still trying to figure out how they’re getting these numbers.

melpomenesclevage ,

Right?

sugar_in_your_tea ,

Skill issue, L for riot games.

I’m no expert here, but couldn’t they rely on SEV/SME or similar? My understanding is those features encrypt RAM, which would make it a lot more difficult for an attacker to do memory-based attacks when the game is running within a VM. I expect “physical attacks” would include attacking a VM’s memory, but again, I’m not an expert.

I also wonder if this could work in a containerized environment instead of a VM, so players could just run a lightweight container and preserve direct access to resources like the GPU. I don’t know if GPU access can be required to be encrypted as well, but surely this is a massive step forward.

KillingTimeItself ,

i have no clue myself frankly. Realistically, doing literally anything is probably going to be better than what riot claims is possible. I think a fundamental part of the problem is stuff outside the control of the game, the OS already has segmented ram for instance, it’s all supposed to be virtually privatized, that way you don’t get these kinds of problems On the fly encryption would probably help, though they would probably just use shitty encryption anyway. Regardless, if you get something to hook into the game code itself, rather than just abusing memory values, it wouldn’t matter. Because at that point it’s going to be running inside the game.

hperrin , in Linux vs Windows, my experience

Windows also doesn’t work out of the box like you demonstrated in your post, people are just familiar with how to get it working. Like, Linux isn’t more complicated than Windows, it’s just both complicated and unfamiliar to a lot of people.

sugar_in_your_tea ,

Yup. Imo, Linux has a better OOTB experience than Windows since most drivers are already part of the kernel (esp if you buy an AMD GPU). If you only need basic software (web browser, office suite, etc), you’ll be good with any major Linux distro after a default install.

The complexity of Linux only really comes into play if you run into issues, like some hardware isn’t properly recognized/supported (frequent on cheap laptops, esp WiFi and sound), or you need specific Windows software.

That said, if you know both systems well, I think Linux is easier. It’s usually just tweaking a config file or setting up a third party repo and installing a propriety driver. And that can be nearly completely avoided by being careful when buying hardware, and knowing what to avoid takes some experience.

Fluid , in Gamedev and linux
@Fluid@aussie.zone avatar

I would report so many more bugs if there was a way to do so easily, in app, without having to create an account somewhere or signup to some website or specific forum. Give me a one-click “report bug” box and I’ll do it. BG3 did this well.

Shan , in Steam On Linux Use Steady For June, ~40% Of Linux Gamers Are Using The Steam Deck

Steamdeck has done such good things for Linux gaming, it’s like an overnight shift in development attitudes and I love it.

Voytrekk OP ,
@Voytrekk@lemmy.world avatar

The Steam Deck may not have a ton of users, but enough that developers are willing to put in a little more effort to ensure compatibility.

gk99 ,

Maybe if Valve could work out shipping them to other regions officially we’d see more growth. I still see people lamenting that they can’t buy a Deck without going to some sketchy third-party and overpaying.

animist ,

Blame the laws of the countries where that happens. The legislatures there have been captured by their own corporations.

Molecular0079 ,

I really hope the momentum continues. Part of me is worried that the Asus ROG Ally is eating into that momentum.

smileyhead , in Linux hits 4% on the desktop 🐧📈

This site is really unrealiable. It is based on browser’s user agent. It has spikes like this regurally and always Linux community talks about it.

DingoBilly ,

Yeah, there’s some heavy hopium in this discussion. “What if Linux has exponential growth forever, 40% every quarter?” type garbage.

f4f4f4f4f4f4f4f4 ,

LibreWolf fakes user agent to show as Windows 10.

WeLoveCastingSpellz ,

mostt linux users use firefox and with fingerprinting pritection on it reports you as a windows user

nokturne213 , in Tecno Pocket Go is like a Steamdeck that replaces a screen with a wearable display

As long as I can use it while wearing my glasses and do not need to get special glasses made for it.

PassingThrough ,

That or they do prescription inserts, or just sell you the computer and you get other glasses that do, like Viture www.viture.com

nokturne213 ,

Absolutely a huge no to inserts.

relaymoth ,

The article says it does diopter correction so no need to wear glasses with them if your prescription isn’t too extreme.

nokturne213 ,

Sadly, due to an injury mine is fairly extreme.

relaymoth ,

Aw, sorry to hear that. Hopefully they’ll still be able to support glasses.

S_H_K , in Steamdeck compatibility could take a huge leap forward with ULWGL-launcher, a universal game compatibility tool and collaborative effort between Glorious Eggroll, Lutris, Bottles, and Heroic Launcher!

I don’t know much about linux but as far as I understand it says linux get more compatibility?! Monkey sees monkey upvotes and shares

ProdigalFrog OP ,

There’s a lot of projects to help get Windows games working better on Linux, and this effort is basically all those projects coming together to work on making the ‘ultimate’ project that will make it easier than ever to game on Linux! :D

ono , in Rust-Written Linux Scheduler Showing Promising Results For Gaming Performance

Seems like a weird headline. AFAIK, the language it’s written in has nothing to do with the performance.

captainjaneway ,
@captainjaneway@lemmy.world avatar

I wouldn’t be surprised if this was essentially just a common result of refactoring code. Rust might help compile to more efficient C than the stuff people write on their own? But my code is always more performant after a refactor. Surely writing this in another language would cause someone to look deeper at the choices being made during development. Even the scheduler might have some technical debt.

Curdie ,

The main improvement Rust provides is memory safety. It’s very easy to make mistakes in C where you could overrun a buffer or something, introducing unexpected crashing and making it vulnerable to exploitation by malware or whatever. Rust eliminates a whole category of issues with their clever memory management paradigm. The improvements in this schedule probably have more to do with the strategy used than code efficiency.

surewhynotlem ,

Didn’t we already do that with c++ and c#? Is rust just c++++?

Curdie ,

C and Rust are low level languages, suitable for interacting directly with the hardware. C++ might be described as C with some object oriented stuff bolted on, making it excellent for videogame development. C# is a lot more like Java. It’s great for line of business apps because it handles the complexity of memory management for you and provides an excellent framework and excellent libraries for a lot of common tasks. But it’s not suitable for low level work.

ono , (edited )

Linux has quite a few schedulers. The performance of this new one is almost certainly a result of different algorithms used, not an effect of refactoring the existing ones, nor the language it’s written in.

I don’t think I’ll dig in to the code just now, but if it turns out to have much practical value, perhaps we’ll eventually see an article about the design.

sugar_in_your_tea ,

Yeah, a scheduler just decided which processes get CPU time and takes up a very small part of total execution time. So yeah, I wouldn’t expect compiler optimizations to matter much.

kugmo ,
@kugmo@sh.itjust.works avatar

Rust has a cult

Kittenstix ,

Which came first the language or the game? Cause I’ve read a few headlines that confused me not realizing there was a language named rust.

merthyr1831 ,

Language was released 2015 (started in 2006), Game was released 2018,

merthyr1831 ,

This is more just an example of Phoronix being Phoronix than rust fanboyism tbf

tabular , in 2022 vs 2023
@tabular@lemmy.world avatar

The change in colors for the same platform make reading it hurt.

Druid_ OP ,
@Druid_@lemmy.world avatar

Yeah idk why they did that.

ThatFembyWho , in Gamedev and linux

Bc linux users are not only more tech literate on average, but also have more of a sense of community and shared responsibility. Yeah, if we get annoyed by something, we know we’re not the only ones, and if we can’t fix it ourselves, we tell the ppl who can. You don’t just assume it will always be broken, or assume a future update will magically fix it.

MrHandyMan , in Nvidia SUCKS!

Earlier this year I had a months long issue where my desktop image would freeze if I set its refresh rate higher than 120. I thought my GPU was breaking up, but I finally found a post on the Nvidia forum where someone else had the same issue and realized that it was because of the newest driver. It took months for Nvidia to fix that. Two months ago I just decided to switch to AMD and sold my Nvidia card and haven’t had any issues with AMD so far.

ReverseModule OP ,
@ReverseModule@discuss.tchncs.de avatar

My 3080M won’t go higher than 80W on Linux for the past 3 years that I have this laptop. I tried both the 535 and 545 drivers, still same issue. This is absolutely unacceptable.

ayaya , (edited )
@ayaya@lemdro.id avatar

To be fair AMD recently had a bug where the 6000 series GPUs would sit at 96 mhz unless you set your refresh rate below 100hz and that also took a couple months to be fixed. I was randomly getting 20fps in every game until I managed to find this gitlab issue. It started in kernel 6.4 and wasn’t fixed until 6.6 so I had to play at 90hz on my 165hz monitor for that whole span.

entropicdrift ,
@entropicdrift@lemmy.sdf.org avatar

This is why LTS kernels are a good thing. I used 6.1 that entire time and didn’t even know the issue existed on my 6700XT

uranibaba ,

Yeah, same reason I use LTS. Latest features are nice and all but I want a stable system for my everyday life.

vividspecter ,

I’m someone that likes to tinker and be on the bleeding edge, but I agree, LTS makes sense on hardware that is more than 6 months old or so.

tomten ,

LTS is no guarantee that there wont be bugs, 6.1 recently had a bug with NFS where it corrupted files.

entropicdrift ,
@entropicdrift@lemmy.sdf.org avatar

I didn’t say it was?

You do get fewer bugs, though, and equally frequent hotfixes

tomten ,

No you didnt, I was just trying to say that you’re not safe either way.

entropicdrift ,
@entropicdrift@lemmy.sdf.org avatar

Safety is a sliding scale. You’re certainly safer than bleeding edge

Defaced , in Roblox on Linux Returns With Wine Support: Rejoice, Gamers! ⚡

Didn’t they just get busted for essentially promoting child focused gambling rings or something along those lines?

_Sprite ,
@_Sprite@lemmy.world avatar

Surprised it didn’t happen sooner, Those cash-grab pet cube and anime games with drop rates in the 0.0001% have been around for a minute but no one said anything.

nothing ,

A complaint was just filed. It has not gone anywhere as far as I know.

AlmightySnoo , in Linux players getting banned on Apex Legends again
@AlmightySnoo@lemmy.world avatar

Pretty happy Genshin Impact hasn’t gone scorched earth against Linux users who have to rely on custom launchers, yet. What’s ironic is that Apex Legends is supposed to be officially supported on Linux though.

CriticalMiss ,

Likely a false positive, they happen on Windows too

BleatingZombie ,

I don’t play Apex, but I don’t think I would go back to a game that falsely bans me. This seems like a big mistake on their part

Rustmilian , (edited ) in A new AMD vs Nvidia decision?
@Rustmilian@lemmy.world avatar

Just wait and see how good those drivers are first.

AMD given nvidia having a better performance to cost ratio

When the fuck?

and the fact that they have the potential for HDMI2.1 support which AMD doesn’t have a solution to yet.

An open source solution exists for Intel, the way it works is just by a translation layer between HDMI & DisplayPort. I imagine AMD will do the same thing.

Vinny_93 , in A new AMD vs Nvidia decision?

Why even use HDMI when AMD does DisplayPort 2.0 where nvidia only does 1.4?

I’d say nvidia would work fine but you need to take into account that the drivers can be a bit flakey.

Molecular0079 ,

A lot of displays don’t support DP unfortunately. I have an LG C2 which is perfect for desktop use and one of the more affordable OLED screens out there, and it does not support DP. The PC monitor equivalent that uses the same panel is made by Asus, but that one has a $600 dollar mark up.

vividspecter ,

There are converters these days, albeit with some minor quirks. And they typically only use DP 1.4 anyway, although that’s enough for perceptually lossless 4k@120hz + HDR.

Molecular0079 ,

Do they support VRR though? Last I heard that was still an issue with these converters.

vividspecter , (edited )

Do they support VRR though? Last I heard that was still an issue with these converters.

Yes, some of them do but it can be dependent on the firmware (some of them are flashable). I will add that my display supports both Freesync over HDMI and VRR, and it’s not always clear which it is actually using under the hood, so be aware of that. You’ll need a pretty recent kernel. Definitely at least 6.3 but prefer 6.6 or later.

My experience is the adapters have much better support under Linux as well, with them being almost useless on Windows (no HDR, no VRR, and potentially no 120Hz). But it’s been a while since I’ve tested.

Here’s the adapter I use: www.amazon.com/…/B08XFSLWQF/

And a long discussion thread about HDMI 2.1 and adapters used to workaround the issue: gitlab.freedesktop.org/drm/amd/-/issues/1417which may be helpful if you run into issues.

EDIT: Fixed the link

Molecular0079 ,

Here’s the adapter I use: www.youtube.com/watch?v=-b6w814wXvc

Did you copy the wrong link? This was a random youtube video.

Good to hear that some adapters do work though. The lack of HDMI 2.1 basically prevented me from ever considering AMD, but if there are converters that work that certainly opens up my options.

vividspecter ,

My bad, the two clipboards on Linux still trip me up after all of these years. Anyway, I’ve added a link to the above.

Molecular0079 , (edited )

Thanks! So VRR works out of the box for you or did you have to do tweaks to get it to work? The answers on the Amazon page are conflicting, with the manufacturer saying VRR is not supported but some users saying it does. Don’t know who to believe.

vividspecter ,

Should work out of the box with Plasma 5/6 (6 if you want HDR) and Sway.

VRR didn’t work with older firmware versions but there have been updates since so the manufacturer information may be out of date. If it doesn’t work, there are links in the gitlab thread for newer firmware (you’ll probably need Windows to update although I saw some vague references that it might be possible on Linux). The adapter is mostly useless on Windows for the record, although you can just swap to a direct HDMI connection in that case.

Oh and I’ll add there are some instances where you may need to power cycle your TV/monitor and/or switch console VTs, if you get a black screen or if HDR fails to toggle on/off.

And lastly, gamescope session didn’t work reliably last time I checked, but it’s been a while.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • [email protected]
  • lifeLocal
  • goranko
  • All magazines