Driver Placa de Vídeo GeForce 910M

Recentemente formatei meu notebook, saindo do Win10 e vindo para o linux mint 22 (wilma).

porém, percebi que o mesmo não reconheceu minha GPU e também não chegou a instalar o driver, devido a isso, fiz o seguinte procedimento:

erificar a placa de vídeo no sistema operacional Linux:
Abrir o Terminal
Usar o comando ?lspci | grep -i vga? e pressionar “Enter”

Instalar os drivers da placa de vídeo:

Abrir o terminal com as teclas CTRL + ALT + T

Adicionar o repositório com o comando: sudo add-apt-repository ppa:graphics-drivers/ppa

Atualizar o gerenciador de pacotes: sudo apt-get update

Instalar os drivers atualizados: sudo apt-get upgrade

Após ter feito esse procedimento, no gerenciador de driver apareceu a seguinte imagem (anexada)

porém, ao tentar instalar o driver “nvidia-driver-390” ele retorna com este erro:

Error while installing package: o subprocesso instalado, do pacote nvidia-dkms-390, o script post-installation retornou erro do status de saída 10.

O que posso fazer para estar corrigindo e instalando a placa de vídeo?
Captura de tela de 2024-10-13 17-15-30

Hi @higor.grodrigues, welcome to the NVIDIA developer forums.

The latest driver for your GPU is from the v470 series and recommended to be installed.

Before doing anything you MUST remove all NVIDIA drivers currently on your system.
What usually works for Debian based systems is:

To remove NVIDIA Drivers:
sudo apt-get remove --purge -V "nvidia-driver*" "libxnvctrl*"
To clean up the uninstall:
sudo apt-get autoremove --purge -V

or alternatively

sudo apt purge ^nvidia-* -y
sudo apt purge ^libnvidia-* -y
sudo apt autoremove

Remember to reboot afterwards!

Then go to Download The Latest Official NVIDIA Drivers and search for the latest Linux driver for your GPU. The driver comes with an extensive README that explains what to do to successfully install the driver.

Given that you GPU is very old and driver support has been deprecated, there might be issues with current kernels and distros like Mint, so it is HIGHLY REOMMENDED to read that README document.

Good luck!