|
|
#1 | |
|
Registered User
Join Date: Dec 2004
Posts: 16
|
hi all:
thought i would pass along the contents of my xorg.conf file for everyone who is attempting 'dual head' mode with 2 LCD monitors. this was a BIG project for me as a newb. driver is the 6629 off of the nvidia.com website. all of their drivers back support all other cards AFAIK, so all you have to do is grab the most recent. on new Fedore Core 3 builds, update your core to most recent and get the blue checkmark on the up2date before trying to install the driver. reason is, you'll have to re-install the video driver every time you upgrade the kernel. this is a major bummer, but hey...it works. after updating the core, the first thing you want to do is get the gcc and the gcc++ rpm's. if you don't do this, the driver won't install with the 'sh' command in term. FC3 will NOT install the nvidia driver without the gcc and the gcc++ rpm's due to the way FC3's compiler works. you can read about this in other posts. at any rate, comment out the 'dri' lines in xorg.conf and basically go with what you see below. you need to know the PCI bus address of your card for this to work. i tried xorg.conf without specifying this and i got a boot failure when X started. my nvidia 256 AGP GeForce FX 5500's address is PCI 1,0,0. unless you have a really whacked out config, try this first if you don't want to go back into Blindows XP to find it. i couldn't get the PCI address while in Linux??? oh well, i told you i was a complete newb! the only thing i'm bummed about is the fact that you can't 'Span' your display in Linux. nvidia says this right in their release notes for the driver. if anyone knows any tricks, please post them here! at any rate, you can still have a cool set up. there are major advantages... i am going to keep one monitor at 1280x1024 for desktop work and one at 1024x768 to check web .html outputs since over 80% of the folks who visit our sites still run 1024x768 on their monitors. in the config below, "Monitor0" is on the left and is my primary monitor. i hope this helps a few of you out there! /etc/X11/xorg.conf is as follows: Quote:
john http://www.TheGemZone.com http://www.eTanzanite.com |
|
|
|
|
|
|
#2 | |
|
Registered User
Join Date: Dec 2004
Posts: 2
|
Hi,
I would also suggest you to add the following option under device section. Option "NvAGP" "3" my complete xorg.conf you can check at : http://ii-consult.com/downloads/xorg.conf.gz Cheers, Badri |
|
|
|
|
|
|
#3 | |
|
Registered User
Join Date: Dec 2004
Posts: 16
|
Quote:
if the PCI address is specified, why would you suggest this? just curious? thx, j |
|
|
|
|
|
|
#4 | |
|
Join Date: Jul 2002
Location: Netherlands, Europe
Posts: 2,105
|
That line isn't needed after all. The option NvAGP can be used to choose the agp driver you want to use (agpgart of the driver's builtin agp support). By default it tries to use agpgart first and if that won't work it tries the builtin support. The default behaviour is similar to NvAGP 3. It is only usefull if you want to force a specific agp driver but in general that is not needed.
|
|
|
|
|
|
|
#5 | |
|
Registered User
Join Date: Dec 2004
Posts: 2
|
Quote:
(II) NVIDIA(0): Detected AGP rate: 4X You don't need it.. Cheers, Badri |
|
|
|
|
|
|
#6 | |
|
Registered User
Join Date: Dec 2004
Posts: 16
|
i should be good to go with the following then. excerpt from Xlog:
Quote:
j |
|
|
|
|
|
|
#7 |
|
NVIDIA Corporation
Join Date: Aug 2002
Posts: 3,740
|
@jmcqueen: the NVIDIA 2D acceleration architecture affects XAA, not OpenGL/GLX.
|
|
|
|
|
|
#8 | |
|
Registered User
|
Quote:
Code:
Section "ServerFlags"
Option "Xinerama" "On"
EndSection
Code:
Section "Files"
RgbPath "/usr/X11R6/lib/X11/rgb"
FontPath "unix/:7100"
EndSection
Section "Module"
Load "dbe"
Load "glx"
Load "ddc"
Load "extmod"
Load "v4l"
EndSection
Section "ServerFlags"
Option "Xinerama" "On"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "logicordless"
Option "XkbLayout" "dvorak"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Device" "/dev/input/mice"
Option "Protocol" "IMPS/2"
Option "Emulate3Buttons" "no"
Option "Buttons" "7"
Option "ZAxisMapping" "4 5"
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Acer"
ModelName "AL1715"
HorizSync 55.0-85.0
VertRefresh 70.0-75.0
EndSection
Section "Monitor"
Identifier "Monitor1"
VendorName "NEC"
ModelName "NEC MultiSync XV15"
HorizSync 50.0-65.0
VertRefresh 69.0-95.0
EndSection
Section "Device"
Identifier "NVIDIA AGP"
Driver "nvidia"
BoardName "GeForce FX 5700"
Option "RenderAccel" "true"
Option "NoLogo" "On"
BusID "PCI:1:0:0"
EndSection
Section "Device"
Identifier "NVIDIA PCI"
Driver "nv"
# Option "NvAGP" "0"
Option "RenderAccel" "true"
Option "IgnoreEDID" "1"
Option "NoLogo" "On"
# VideoRam 32768
BusID "PCI:0:13:0"
EndSection
Section "Screen"
Identifier "Screen0"
Device "NVIDIA AGP"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1280x1024"
EndSubSection
SubSection "Display"
Depth 32
Modes "1280x1024"
EndSubSection
EndSection
Section "Screen"
Identifier "Screen1"
Device "NVIDIA PCI"
Monitor "Monitor1"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x768"
EndSubSection
SubSection "Display"
Depth 32
Modes "1024x768"
EndSubSection
EndSection
Section "ServerLayout"
Identifier "2 Screens"
Screen "Screen0"
Screen "Screen1" RightOf "Screen0"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
EndSection
__________________
WRPN.net |
|
|
|
|
|
|
#9 |
|
Registered User
Join Date: Oct 2004
Posts: 86
|
yeap... using extension xinerama will span your desktop.
not sure though why you'd like to do that. having 2 screens x 6 vitrual desktops kicks ass (as soon as you get used to it ) ![]() |
|
|
|
|
|
#10 |
|
Registered User
Join Date: Dec 2004
Posts: 16
|
how are your screens set up? left monitor and right monitor??? i mean...what windows do you use on each desktop?
i appreciate the help greatly! j Last edited by jmcqueen; 01-06-05 at 03:01 AM. |
|
|
|
|
|
#11 |
|
Registered User
Join Date: Jan 2005
Posts: 1
|
as root use scanpci to find the PCI info of your card.
|
|
|
|
|
|
#12 |
|
Registered User
Join Date: Jan 2005
Posts: 15
|
Using the above X config, I successfully setup Dual Head on Chaintech 6600GT PCI Express on AMD64 on FC3 w/ updates and Kernel 2.6.10-1.741_FC3 w/ 6629 drivers.
RGB 15-pin to Monitor on Screen 0 , DVI to LCD on Screen 1. Many thanks jmcqueen. |
|
|
|
![]() |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Diablo 3 build guide: Barbarian, Demon Hunter, Monk, Witch Doctor and Wizard | News | Latest Tech And Game Headlines | 0 | 05-12-12 12:00 PM |
| How do I get Dual Head working? | Heath | NVIDIA Linux | 1 | 08-22-02 12:44 PM |