this post was submitted on 22 Jan 2025
80 points (100.0% liked)

Linux

49176 readers
649 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
top 9 comments
sorted by: hot top controversial new old
[–] [email protected] 2 points 12 hours ago

this is the Ronald's universal number kounter of graphics libraries

[–] [email protected] 14 points 14 hours ago (1 children)

Should be wayland by default, finally.

The wayland transition is almost over. JFC it took forever.

All that's left is steam itself, wine/proton, and i'd say we're basically done.

[–] [email protected] 5 points 12 hours ago (1 children)

wine is pretty much there with its latest release. it'll take a couple of years for LTS distros to phase it out

[–] [email protected] 1 points 12 hours ago* (last edited 12 hours ago)

I'm still waiting for this: https://gitlab.winehq.org/wine/wine/-/merge_requests/6025

I believe that'll make it so that windows actually use my SSD's instead of CSD's, i'm on hyprland and the double bordering is super annoying.

[–] [email protected] 1 points 15 hours ago

Coolio, but I won’t be using it at least until it hits Debian Testing. Hopefully this can be in Trixie - looks like the freeze hasn’t happened yet.

[–] [email protected] 7 points 16 hours ago

sdl2-compat is gonna be doing a LOT of heavy lifting

[–] [email protected] 10 points 21 hours ago (2 children)

Fantastic. It's my understanding that SDL is responsible for why we can connect generic controllers to Linux without having to download specific drivers.

[–] [email protected] 2 points 15 hours ago

SDL is kind of the equivalent to DirectX. It provides a standard interface for multimedia applications regardless of underlying mechanisms. Except the 3D acceleration part I think which is handled by OpenGL / Vulkan.

[–] [email protected] 15 points 16 hours ago

Kind of. It's the Linux kernel that manages all of the controller drivers and makes them available to userspace, mostly via the evdev interface. SDL is a library for managing graphics, sounds and events in a generic way on multiple platforms and devices. It's overwhelmingly the most common library used for Linux games - Steam used it for all of their Linux-native ports of Source engine games, for instance. But it also presents all gamepad events in a consistent way regardless of their "true source", so generic devices tend to work with every game.

SDL3 mostly clears out all the clutter from the previous versions of SDL. It's a mature library and gamedev has come a long way in that time. Getting rid of all the weird stuff that the API accumulated makes it easier to use and maintain. Plus there were things like managing audio generally, and pen-and-touch gestures mobile phones and tablets, that were quite the head-scratchers before. That's all a bit easier now.