Nvidia GeForce 610M graphics cards often require specific drivers to function correctly on Ubuntu 24.04, especially if you experience poor graphics performance, display issues, or system instability. Installing the correct driver optimizes your graphics performance, enables smoother video playback, and improves overall system stability.
Method 1: Install Nvidia Driver Using Ubuntu’s Additional Drivers Tool
Super (Windows) key. Type “Software & Updates” and open the application.After rebooting, verify the driver installation by opening a terminal and typing:
nvidia-smi
If the driver installation was successful, this command will display details about your Nvidia GPU, driver version, and GPU usage statistics.
Join readers who trust AllThings.How
Add us as a preferred source on Google so our practical guides show up first next time you search.
Add to Google Preferences →Method 2: Install Nvidia Driver via Terminal (Command Line)
Ctrl + Alt + T. First, update your system’s package list to ensure you have the latest available driver versions. Run the following command:sudo apt update
sudo ubuntu-drivers install
This command identifies your Nvidia GeForce 610M graphics card and installs the most compatible proprietary driver available.
sudo reboot
Upon reboot, confirm the installation success by typing nvidia-smi in the terminal, as described in Method 1.
Method 3: Install Nvidia Driver Manually from Nvidia’s Website
NVIDIA-Linux-x86_64-XXX.XX.run.sudo nano /etc/modprobe.d/blacklist-nouveau.conf
Add the following lines into the file:
blacklist nouveau
options nouveau modeset=0
Save the file (Ctrl + O), exit (Ctrl + X), and then update the initramfs with:
sudo update-initramfs -u
Reboot your system to apply these changes:
sudo reboot
Ctrl + Alt + F3 to enter a text-based console login. Log in with your username and password, then stop the graphical display manager to prevent conflicts during installation:sudo systemctl stop gdm
(Replace gdm with your display manager if using another, such as lightdm.)
chmod +x NVIDIA-Linux-x86_64-XXX.XX.run
sudo ./NVIDIA-Linux-x86_64-XXX.XX.run
Follow the on-screen prompts to complete the installation. Once finished, restart your display manager or reboot your system:
sudo systemctl start gdm
or simply reboot:
sudo reboot
After rebooting, verify the installation by running nvidia-smi in the terminal.
Regularly check for driver updates through Ubuntu’s “Software & Updates” or by periodically running sudo ubuntu-drivers install. Keeping your graphics driver updated ensures continued stability and optimal graphics performance.






