Skip to content

Instantly share code, notes, and snippets.

@umayr
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save umayr/97b22407bf78a8a82d35 to your computer and use it in GitHub Desktop.
Save umayr/97b22407bf78a8a82d35 to your computer and use it in GitHub Desktop.
How to install NVIDIA drivers on Dell Inspiron 15R N5110 laptop system with dual Intel/Nvidia graphics processors.
#!/bin/bash
## Removing current Nvidia installation.
sudo apt-get purge nvidia*
sudo apt-get purge bumblebee*
sudo apt-get update
sudo apt-get dist-upgrade
## Installing Kernel header if didn't already
sudo apt-get install linux-headers-generic
## Bumblebee Installation
sudo add-apt-repository ppa:bumblebee/stable
sudo add-apt-repository ppa:ubuntu-x-swat/x-updates
sudo apt-get update
sudo apt-get install bumblebee bumblebee-nvidia
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment