Siduction Forum

Siduction Forum => Software - Support => Topic started by: popo on 2023/01/25, 17:38:32

Title: Installing NVIDIA the Right Way?
Post by: popo on 2023/01/25, 17:38:32
Hello Siducers,

I have a GeForce GTX 1050 Ti NVIDIA card; what is the preferred way to install the drivers on Siduction, and will I have to do any tinkering when a new kernel version shows up?

Thanks!
Title: Re: Installing NVIDIA the Right Way?
Post by: towo on 2023/01/25, 17:45:20
We have a manual, you would find there:

Code: [Select]
apt update && apt install nvidia-driver
Title: Re: Installing NVIDIA the Right Way?
Post by: popo on 2023/01/25, 17:50:17
Thanks, towo.

Yes, I checked the manual before posting, but only found this:

"For Kepler, Maxwell, Pascal, and newer (GKxxx, GMxxx, GPxxx, TU1xx)"

Code: [Select]
apt update && apt install nvidia-driver
So I'm assuming this applies to my card.

Anything to do when the kernel is updated?
Title: Re: Installing NVIDIA the Right Way?
Post by: dibl on 2023/01/25, 17:59:49
...

Anything to do when the kernel is updated?
Build of new modules for new kernels is handled automatically.

However, be aware that new kernels may incorporate new features that are incompatible with your current (older) Nvidia driver -- normally that means that the new module will NOT be correctly compiled for the new kernel. In this case, usually you will find that there is a newer Nvidia driver in experimental that will work with the new kernel.

For these reasons, always make sure a new kernel is working correctly before removing older kernels.

Code: [Select]
$ inxi -G
Graphics:
  Device-1: NVIDIA GP106 [GeForce GTX 1060 6GB] driver: nvidia v: 510.108.03
Title: Re: Installing NVIDIA the Right Way?
Post by: popo on 2023/01/25, 18:03:35
Ok, thanks Dibl!