this post was submitted on 26 Dec 2025
286 points (99.7% liked)

Linux

10793 readers
892 users here now

A community for everything relating to the GNU/Linux operating system (except the memes!)

Also, check out:

Original icon base courtesy of lewing@isc.tamu.edu and The GIMP

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] kbal@fedia.io 23 points 1 day ago (1 children)

Device drivers are not like other software in at least one important way: They have access to and depend on kernel internals which are not visible to applications, and they need to be rebuilt when those change. Something as huge and complicated as a GPU driver depends on quite a lot of them. The kernel does not provide a stable binary interface for drivers so they will frequently need to be recompiled to work with new versions of linux, and then less frequently the source code also needs modification as things are changed, added to, and improved.

This is not unique to Linux, it's pretty normal. But it is a deliberate choice that its developers made, and people generally seem to think it was a good one.