121
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 28 Dec 2025
121 points (93.5% liked)
Linux
57274 readers
876 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
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 6 years ago
MODERATORS
Unless Arch's
ltskernel switches to a newer lts (in a year or two?), you can run nvidia 580 dkms modules and the lts kernel with basically no maintenance.After that, you can consider something like linux-lts66 from AUR, or switch to another distro if desired. The first option requires compiling the kernel (no maintenance, just processor time), and will keep your system security patched until the last LTS kernel supported by nvidia 580 modules stops being supported.
Whatever kernel you choose, ensure you have the
-headers, likelinux-lts-headers. That way, thenvidia-580xx-dkmspackage can install properly.If you haven't yet, look into an AUR helper like
yayorparu. These significantly improve quality of life when using AUR packages.Doesn't LTS change like twice a year nowadays?
Thank you for a nuanced answer. I start understanding.
For people who’ve gone the linux-lts66 (or similar) route from AUR: is that something you’d consider “set and forget,” or does it eventually turn into a kind of babysitting?
As long as you use an AUR helper to update your system (replace
pacman -Syuwithyay -Syu), and keep the kernel EOLs in your calendar, it shouldn't be constant babysitting. Updating a (non-bin) kernel from the AUR requires compiling the kernel, which makes updates take way longer, but doesn't require extra manual maintenance.You can find when a kernel is EOL on kernel.org. When your chosen LTS goes out of support, you should update (for security reasons). You'll have to hope the 580 nvidia drivers still support the newer kernel version you move to.
This path allows you to run your setup for as long as possible on Arch, when you run into issues with nvidia support, so does every other distro.
Ah! This was key information I did not understand before. Thanks.