3

I have an old nvidia card not supported anymore (Ti4200Go agp 8x). The nouveau driver has problems drawing the cursor and shows ugly pictures on the screen. How do I try the vesa driver? I'm sad the vesa won't display the full 1680x1050 native resolution, but at least the laptop will be usable.

Jorge Castro
  • 71,754
useful
  • 1,834
  • 4
  • 25
  • 32

2 Answers2

1

Try blacklisting the nouveau driver by adding the line blacklist nouveau to the file /etc/modprobe.d/blacklist.conf(you will need root privilege). This will prevent that driver from loading. Also comment any line like blacklist vesafb by replacing it with #blacklist vesafb in the file /etc/modprobe.d/blacklist-framebuffer.conf

Samik
  • 2,660
1

I have the same exact video card on a notebook that can't use a newer video card because it uses the AGP bus rather than PCIE or something newer. This was the solution that allowed me to use the nvidia96 driver with Lubuntu 12.04 by keeping the xorg from 11.10:

http://ubuntuforums.org/showthread.php?p=11891185 See post #24 by zecoyote007

In order to use nvidia-173 or nvidia-96, please see my post here: https://bugs.launchpad.net/ubuntu/+s...73/+bug/922268

I found a workaround: keep the 11.10 version of the Xorg server No conflict at all with any package from 12.04 !!!

nvidia-173 drivers are not compatible with Xorg (ABI to be precise) version released in 12.04. So I stick with 11.10 version of Xorg. I had to make the following changes to backport Xorg:

1) In /etc/apt/sources.list :

deb http://fr.archive.ubuntu.com/ubuntu/ oneiric main deb-src http://fr.archive.ubuntu.com/ubuntu/ oneiric main

2) In /etc/apt/preferences:

Package: xorg xserver-xorg* Pin: release a=oneiric Pin-Priority: 1050

3) Note related to nvidia-173/96 on Ubuntu 12.04 (optional if you face slow graphics) I'm using old hardware with nvidia-173 drivers and I don't like the fact "composite" is mandatory to use Unity correctly (very laggy) I had to force composite to switch it "off" to avoid laggy windows by modifying /etc/X11/xorg.conf:

Section "Extensions" Option "Composite" "Disable" EndSection

This works for me, at least until (fingers crossed) nVidia updates the nvidia96 driver.

gman
  • 2,276
  • 4
  • 27
  • 39
JustMe
  • 11