Removing bad NVIDIA driver

Asked by Mike Hinchman

GeForce 7025/nForce 630a graphics, 64-bit Ubuntu 12.10 installation, 2 GB RAM

NVIDIA proprietary driver doesn't work. I do have command line access. How do I completely remove anything related to NVIDIA and make it use standard driver? Standard driver on installation DVD works well - I only need 1280 X 1024 for my 19 inch monitor.

Thanks for you help

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu xserver-xorg-video-nv Edit question
Assignee:
No assignee Edit question
Solved by:
N1ck 7h0m4d4k15
Solved:
Last query:
Last reply:
Revision history for this message
actionparsnip (andrew-woodhead666) said :
#1

If you run:

sudo apt-get --purge remove `dpkg -l | grep nvidia | grep -v nvidia-common`

Will remove all proprietary Nvidia video drivers

Revision history for this message
Best N1ck 7h0m4d4k15 (nicktux) said :
#2

Well,
nvidia-common is not exactly a driver , is a package that finds nvidia-drivers , but sometimes needed for flash player to work properly. nvidia-common is pre-installed (by default) and at some versions of Ubuntu the purging of nvidia-common purges also the ubuntu-desktop.

I suggest

~$ sudo apt-get purge nvidia-*

~$ sudo rm /etc/X11/xorg.conf

~$ sudo apt-get install nvidia-common ubuntu-desktop

~$ sudo apt-get install --reinstall xserver-xorg-video-nouveau

~$ sudo dpkg-reconfigure xserver-xorg

and reboot to use the nouveau driver.

Thanks

Revision history for this message
Mike Hinchman (mjheh09) said :
#3

Works. Not properly, but I can see the desktop. Thanks