Quote:
Originally Posted by eldonz
It's a GeForce 9400 GT. I'd prefer to stay with the Fedora distribution driver to avoid having to reinstall the NVIDIA driver when the kernel changes.
|
Sticking with the drivers Fedora ships while using a 9400GT is... well, just a waste really.
Unless you're a "Free Software" zealot, there's no sense in depriving yourself of the increased performance and convenience the official drivers offer. Kernel updates are a non-issue if you use the rpmfusion provided drivers.
Please see this thread -->
http://forums.fedoraforum.org/showthread.php?t=204752
After installing the Nvidia drivers, you'll find a configuration utility in your menu, use it to set up your monitors then if/once it works they way you want it to, choose to save the file and move it to /etc/X11/xorg.conf.
In any case, here's a "sample" config that may or not be valid for your setup, remember if X fails you can always just delete the file and let it auto-detect for you. If it does work and you decide to install the Nvidia drivers you should be able to just change 'nv' to 'nvidia'.
Code:
Section "ServerLayout"
Identifier "Layout0"
Screen 0 "Screen0"
Screen 1 "Screen1" LeftOf "Screen0"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/psaux"
Option "Emulate3Buttons" "no"
Option "ZAxisMapping" "4 5"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Unknown"
ModelName "Unknown"
HorizSync 31.5 - 48.0
VertRefresh 56.0 - 65.0
Option "DPMS"
EndSection
Section "Monitor"
Identifier "Monitor1"
VendorName "Unknown"
ModelName "Unknown"
HorizSync 31.5 - 48.0
VertRefresh 56.0 - 65.0
Option "DPMS"
EndSection
Section "Device"
Identifier "Device0"
Driver "nv"
VendorName "NVIDIA Corporation"
BoardName "GeForce 9400 GT"
BusID "PCI:2:0:0"
Screen 0
EndSection
Section "Device"
Identifier "Device1"
Driver "nv"
VendorName "NVIDIA Corporation"
BoardName "GeForce 9400 GT"
BusID "PCI:2:0:0"
Screen 1
EndSection
Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
EndSubSection
EndSection
Section "Screen"
Identifier "Screen1"
Device "Device1"
Monitor "Monitor1"
DefaultDepth 24
SubSection "Display"
Depth 24
EndSubSection
EndSection