How do I install the NVIDIA driver for a GeForce 6200?
Solution 1:
I just did this last night. Here is what I did.
- Copy all instructions down somewhere or cut & paste to a text file you can read on a virtual console - you will be completing this without a graphical user interface.
- Download the appropriate Linux driver from nvidia.com. It comes as a "self extracting archive" that you run just like a shell script. I changed permissions on the file after download was complete to make it executable (
chmod +x << name of download file >>
). - Run
sudo apt-get install build-essential linux-headers-`uname -r`
in a terminal. - At this point I switched to a virtual console (hold down Ctrl+Alt+F6 at the same time). By default Ubuntu seems to preconfigure 5 virtual consoles ... might come in handy to switch back and forth at some point. Just replace F6 with any function key from F1 to F5.
- Shutdown X-Windows:
sudo service lightdm stop
- Remove old version drivers:
sudo apt-get --purge remove $(dpkg -l | grep nvidia | awk '{print $2}')
- Run the downloaded script from NVIDIA and follow all of its prompts:
sudo <script>
- Reboot.
At one point the NVIDIA script complained about some pre-install script having an error and gave me the option to continue or not - I continued. Seems to be working.
No warranties expressed or implied - use at your own risk. :)
Solution 2:
This for me worked perfectly. I simply followed the steps and unity was running after a quick restart. Quick Authentic way to install Proprietary Drivers in Ubuntu
Solution 3:
1) You must blacklist nouveau:
sudo touch /etc/modprobe.d/disable-nouveau.conf
sudo gedit /etc/modprobe.d/disable-nouveau.conf
Add the following two lines, save then close:
blacklist nouveau
options nouveau modeset=0
2) Restart Ubuntu into recovery mode. See the NOTE on the bottom.
3) Boot to a different run level: sudo init 3
4) Stop X: sudo services lightdm stop
5) Manually edit the xorg configuration file. If it doesn't exist, skip this step:
use locate xorg.conf
to check.
Remove the line:
Driver "nv"
(or Driver "vesa") (or Driver "fbdev") and replace it with the line:
Driver "nvidia"
Remove the following lines:
Load "dri"
Load "GLCore"
In the Module section of the file, add the line (if it does not already exist):
Load "glx"
6) cd
to the driver file and then install the driver: sudo sh NVIDIA-Linux-<version>.run
Make it an executable first if necessary: chmod +x NVIDIA-Linux-<version>.run
7) If you did not have an xorg.conf file to edit earlier, let the installer create a configuration file for you when it asks.
8) Startup X and restart Ubuntu: sudo services lightdm start
The steps above are what I have used and got it running successfully. You should see an NVIDIA logo on startup, just after the Ubuntu one.
Source: http://us.download.nvidia.com/XFree86/Linux-x86/290.10/README/index.html
Solution 4:
I'm using nvidia-current
driver with Ubuntu 12.10 for the GeForce 6200 card. I think the nvidia-current
driver (in the main repository) is available for Ubuntu 11.10 but you probably should update to either 12.04 or 12.10 anyway.