this post was submitted on 24 Feb 2024
18 points (90.9% liked)

Linux

47549 readers
628 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
 

Is there a good way to roll back the nvidia driver to an older version? I need 470 for my vr headset, as newer versions seem to disable video output to the headset. I have tried some logical stuff like sudo apt remove --purge nvidia-driver and also some more radical stuff like sudo apt remove --purge "^nvidia-*" but that somehow left all my drivers intact, and I am still on the newest version 525.147.05. Does someone know on how step back?

you are viewing a single comment's thread
view the rest of the comments
[–] people_are_cute@lemmy.sdf.org 3 points 7 months ago* (last edited 7 months ago) (1 children)

Debian bookworm (12) ships with version 525, so that's all you'll get officially.

Debian bullseye (11) is the one that comes with version 470. So clean-installing that is the best bet.

Or you can try to download a driver package from Nvidia's website and try to manually install it in an overcomplicated process that involves patching your kernel with dkms. In my personal experience this almost always breaks things and is not recommended.

This is one of the drawbacks with Debian's "stability". Every stable version of Debian is a standalone, monolithic bundle of software that rarely allows for version changes.

If possible I'll suggest you shift to Mint. It comes with a dedicated GUI driver manager for installing and switching multiple driver versions.

[–] Smorty@lemmy.blahaj.zone 4 points 7 months ago

I actually got it to work. I ran these commands: sudo apt remove --purge nvidia sudo reboot #(Reboots the system) sudo apt install nvidia-tesla-470-driver sudo reboot #(Reboots the system)

And BAM! I got the right driver for the job! Version 470 obtained!