Quote:
|
I think he means "nv", not "nvidia". Or why would RH not include any non-free software but include the nvidia drivers?
|
I'm not sure which one he's using. Back when I used RH (7.3), it didn't seem to use the "nv" driver for whatever reason, and just used vesa.
The driver specified in the config file can be found by typing this in a terminal, should be either "vesa" or "nv":
cat /etc/X11/XF86Config-4 | grep Driver
Quote:
|
"nv" should just be a replacement of the "vesa" line in XF86-Config, no?
|
I recall it needing a BusID line too. Not 100% sure on that, though. Either way, it's relatively simple.
So, diggingforgold, if you'd like to try the "nv" driver (whcih lacks 3D acceleration) instead of the official "nvidia" driver, all you have to do is, as root, edit the /etc/X11/XF86Config-4 file, and replace the line that looks like:
Driver "vesa"
with
Driver "nv"
You may also need to add a BusID line. Here's the relevant section of the XF86Config man page about BusID lines:
Quote:
BusID "bus-id"
This specifies the bus location of the graphics card. For
PCI/AGP cards, the bus-id string has the form
PCI:bus:device:function (e.g., "PCI:1:0:0" might be appropriate
for an AGP card). This field is usually optional in single-head
configurations when using the primary graphics card. In multi-
head configurations, or when using a secondary graphics card in
a single-head configuration, this entry is mandatory. Its main
purpose is to make an unambiguous connection between the device
section and the hardware it is representing. This information
can usually be found by running the X server with the -scanpci
command line option.
|
Then just restart X and you should notice a change.
It would probably be wise to back up your /etc/X11/XF86Config-4 file, just in case you break something.