Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 3rd May 2006, 03:06 PM
mikefreeman Offline
Registered User
 
Join Date: May 2006
Posts: 2
xorg Dual Head

Worked on FC4 but no go with FC5. I've looked all over the web and read the man page cover to cover so to speak. Many so called working xorg.conf posts don't work for me with FC5. I get the left screen working no matter what I play with but no right screen. I removed the system included path to the rgb db as the file and half the tree didn't exist. The man page says it isn't required. Here is my xorg.conf:

Section "ServerLayout"
Identifier "Multihead layout"
Screen "Screen0"
Screen "Screen1" LeftOf "Screen0"
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
Option "Xinerama" "on"
Option "Clone" "off"
EndSection

Section "Files"
FontPath "unix/:7100"
EndSection

Section "Module"
Load "dbe"
Load "extmod"
Load "fbdevhw"
Load "glx"
Load "record"
Load "freetype"
Load "type1"
Load "dri"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "yes"
EndSection

Section "Monitor"
Identifier "Monitor0"
VendorName "LG"
ModelName "L1810B"
HorizSync 30.0 - 80.0
VertRefresh 50.0 - 75.0
Option "dpms"
EndSection

Section "Monitor"
Identifier "Monitor1"
VendorName "LG"
ModelName "L1810B"
HorizSync 30.0 - 80.0
VertRefresh 50.0 - 75.0
Option "dpms"
EndSection

Section "Device"
Identifier "Videocard0"
Driver "nvidia"
VendorName "nVidia"
BoardName "NVIDIA GeForce FX5900XT"
BusID "PCI:1:0:0"
EndSection

Section "Device"
Identifier "Videocard1"
Driver "nv"
VendorName "Videocard Vendor"
BoardName "nVidia Corporation NV35 [GeForce FX 5900XT]"
BusID "PCI:1:0:0"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 8
Modes "1280x1024" "1024x768" "800x600" "640x400"
EndSubSection
SubSection "Display"
Depth 16
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
EndSection

Section "Screen"
Identifier "Screen1"
Device "Videocard1"
Monitor "Monitor1"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600" "640x400"
EndSubSection
SubSection "Display"
Depth 16
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
EndSection
Reply With Quote
  #2  
Old 5th August 2006, 05:13 AM
DCMR2 Offline
Registered User
 
Join Date: Mar 2006
Posts: 8
I'm not sure if you have two video cards or not but if you do, one problem I see is the BusID is the same for both.
__________________
FC5 - Gnome - Intel AL440LX - Celeron 400 MHZ - 192 MB RAM - 2 S3 Virge/VX Videocards

Last edited by DCMR2; 5th August 2006 at 07:39 PM.
Reply With Quote
  #3  
Old 29th August 2006, 02:05 AM
drummond Offline
Registered User
 
Join Date: Aug 2006
Posts: 2
No second monitor on dual head in fc5

I am having the same problem. My dual head setup worked fine in fc4, but in fc5 (fresh install) only my TNT2/SyncMaster is working. The S3Virge/DELL m782p acts like it's not there, despite me setting it up in system-config-display.

/sbin/lspci | grep -i vga gives me:
00:0b.0 VGA compatible controller: S3 Inc. ViRGE/DX or /GX (rev 01)
01:00.0 VGA compatible controller: nVidia Corporation NV5M64 [RIVA TNT2 Model 64/Model 64 Pro] (rev 15)

And here's my xorg.conf file:

# Xorg configuration created by system-config-display

Section "ServerLayout"
Identifier "Multihead layout"
Screen 0 "Screen0" LeftOf "Screen1"
Screen 1 "Screen1" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
Option "Xinerama" "on"
Option "Clone" "on"
EndSection

Section "Files"

# Multiple FontPath entries are allowed (they are concatenated together)
# By default, a font server independent of the X server is
# used to render fonts.
FontPath "unix/:7100"
EndSection

Section "Module"
Load "dbe"
Load "extmod"
Load "fbdevhw"
Load "glx"
Load "record"
Load "freetype"
Load "type1"
Load "dri"
EndSection

Section "InputDevice"

# Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
# Option "Xleds" "1 2 3"
# To disable the XKEYBOARD extension, uncomment XkbDisable.
# Option "XkbDisable"
# To customise the XKB settings to suit your keyboard, modify the
# lines below (which are the defaults). For example, for a non-U.S.
# keyboard, you will probably want to use:
# Option "XkbModel" "pc102"
# If you have a US Microsoft Natural keyboard, you can use:
# Option "XkbModel" "microsoft"
#
# Then to change the language, change the Layout setting.
# For example, a german layout can be obtained with:
# Option "XkbLayout" "de"
# or:
# Option "XkbLayout" "de"
# Option "XkbVariant" "nodeadkeys"
#
# If you'd like to switch the positions of your capslock and
# control keys, use:
# Option "XkbOptions" "ctrl:swapcaps"
# Or if you just want both to be control, use:
# Option "XkbOptions" "ctrl:nocaps"
#
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "yes"
EndSection

Section "Monitor"

### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "S/M 170MP"
DisplaySize 340 270
### Comment all HorizSync and VertSync values to use DDC:
HorizSync 30.0 - 81.0
VertRefresh 56.0 - 85.0
Option "dpms"
EndSection

Section "Monitor"

### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
Identifier "Monitor1"
VendorName "Monitor Vendor"
ModelName "Dell M782p"
### Comment all HorizSync and VertSync values to use DDC:
HorizSync 30.0 - 85.0
VertRefresh 50.0 - 160.0
Option "dpms"
EndSection

Section "Device"
Identifier "Videocard0"
Driver "nv"
VendorName "Videocard vendor"
BoardName "nVidia Corporation NV5M64 [RIVA TNT2 Model 64/Model 64 Pro]"
EndSection

Section "Device"
Identifier "Videocard1"
Driver "s3virge"
VendorName "Videocard Vendor"
BoardName "S3 Inc. ViRGE/DX or /GX"
BusID "PCI:0:11:0"
Screen 1
EndSection

Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 16
SubSection "Display"
Viewport 0 0
Depth 16
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1024x768" "800x600" "640x480"
EndSubSection
EndSection

Section "Screen"
Identifier "Screen1"
Device "Videocard1"
Monitor "Monitor1"
DefaultDepth 16
SubSection "Display"
Viewport 0 0
Depth 16
Modes "1024x768"
EndSubSection
EndSection

Section "DRI"
Group 0
Mode 0666
EndSection
Reply With Quote
  #4  
Old 29th August 2006, 02:48 AM
DCMR2 Offline
Registered User
 
Join Date: Mar 2006
Posts: 8
drummond,

Try commenting out "screen 1" in the device-videocard1 section.

Don
__________________
FC5 - Gnome - Intel AL440LX - Celeron 400 MHZ - 192 MB RAM - 2 S3 Virge/VX Videocards
Reply With Quote
  #5  
Old 29th August 2006, 02:59 AM
JaRaEeZ's Avatar
JaRaEeZ Offline
Registered User
 
Join Date: Jun 2006
Location: UK
Posts: 78
I have mine running in FC 5 fine. I run two seperate desktops & have included the xorg.conf for your perusal...
Code:
# Xorg configuration created by system-config-display

Section "ServerLayout"
	Identifier     "Multihead layout"
	Screen      0  "Screen0" LeftOf "Screen1"
	Screen      1  "Screen1" 0 0
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
	Option	    "Xinerama" "off"
	Option	    "Clone" "on"
EndSection

Section "Files"

# Multiple FontPath entries are allowed (they are concatenated together)
# By default, a font server independent of the X server is
# used to render fonts.
	ModulePath   "/usr/lib/xorg/modules/extensions/nvidia"
	ModulePath   "/usr/lib/xorg/modules"
	FontPath     "unix/:7100"
EndSection

Section "Module"
	Load  "dbe"
	Load  "extmod"
	Load  "fbdevhw"
	Load  "record"
	Load  "freetype"
	Load  "type1"
	Load  "glx"
EndSection

Section "InputDevice"

# Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
#	Option	"Xleds"		"1 2 3"
# To disable the XKEYBOARD extension, uncomment XkbDisable.
#	Option	"XkbDisable"
# To customise the XKB settings to suit your keyboard, modify the
# lines below (which are the defaults).  For example, for a non-U.S.
# keyboard, you will probably want to use:
#	Option	"XkbModel"	"pc102"
# If you have a US Microsoft Natural keyboard, you can use:
#	Option	"XkbModel"	"microsoft"
#
# Then to change the language, change the Layout setting.
# For example, a german layout can be obtained with:
#	Option	"XkbLayout"	"de"
# or:
#	Option	"XkbLayout"	"de"
#	Option	"XkbVariant"	"nodeadkeys"
#
# If you'd like to switch the positions of your capslock and
# control keys, use:
#	Option	"XkbOptions"	"ctrl:swapcaps"
# Or if you just want both to be control, use:
#	Option	"XkbOptions"	"ctrl:nocaps"
#
	Identifier  "Keyboard0"
	Driver      "kbd"
	Option	    "XkbModel" "pc105"
	Option	    "XkbLayout" "us"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "IMPS/2"
	Option	    "Device" "/dev/input/mice"
	Option	    "ZAxisMapping" "4 5"
	Option	    "Emulate3Buttons" "yes"
EndSection

Section "Monitor"
	Identifier   "Monitor0"
	VendorName   "Monitor Vendor"
	ModelName    "Dell 1702FP (Analog)"
	DisplaySize  340	270
 ### Comment all HorizSync and VertSync values to use DDC:
	HorizSync    30.0 - 80.0
	VertRefresh  56.0 - 76.0
	Option	    "dpms"
EndSection

Section "Monitor"
 Identifier   "Monitor1"
	VendorName   "Monitor Vendor"
	ModelName    "Dell 1702FP (Analog)"
 ### Comment all HorizSync and VertSync values to use DDC:
	HorizSync    30.0 - 80.0
	VertRefresh  56.0 - 76.0
	Option	    "dpms"
EndSection

Section "Device"
	Identifier  "Videocard0"
	Driver      "nvidia"
	VendorName  "Videocard vendor"
	BoardName   "nVidia Corporation NV17GL [Quadro4 200/400 NVS]"
EndSection

Section "Device"
	Identifier  "Videocard1"
	Driver      "nvidia"
	VendorName  "Videocard Vendor"
	BoardName   "nVidia Corporation NV17GL [Quadro4 200/400 NVS]"
	BusID       "PCI:1:0:0"
	Screen      1
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Videocard0"
	Monitor    "Monitor0"
	DefaultDepth     16
	SubSection "Display"
		Viewport   0 0
		Depth     16
		Modes    "1280x1024"
	EndSubSection
EndSection

Section "Screen"
	Identifier "Screen1"
	Device     "Videocard1"
	Monitor    "Monitor1"
	DefaultDepth     16
	SubSection "Display"
		Viewport   0 0
		Depth     16
		Modes    "1280x1024"
	EndSubSection
EndSection

Section "DRI"
	Group        0
	Mode         0666
EndSection
HTH
__________________
VMware Images

Registered Linux user 387538
Reply With Quote
  #6  
Old 29th August 2006, 02:08 PM
drummond Offline
Registered User
 
Join Date: Aug 2006
Posts: 2
Genious, DCMR2!

That was exactly it! So simple!

Thanks so much everyone!
Reply With Quote
  #7  
Old 5th September 2006, 10:54 PM
DCMR2 Offline
Registered User
 
Join Date: Mar 2006
Posts: 8
drummond,

Glad to help. The only reason I knew that that might work is I had just been through several days of trying to get my dual head set up to work. I was about to give up when I googled one last time and found a reference to the screen command buried someones long response that didn't every relate to dual head setups directly. I removed that one line and everything worked fine. The irony is that I upgraded to FC5 a few days ago and now I can't get MY dual head working again. For some reason I get a "cannot read V_BIOS" error on the second card.

Don
__________________
FC5 - Gnome - Intel AL440LX - Celeron 400 MHZ - 192 MB RAM - 2 S3 Virge/VX Videocards
Reply With Quote
  #8  
Old 17th October 2006, 05:52 AM
jjbarrows Offline
Registered User
 
Join Date: Sep 2006
Posts: 3
cannot read V_BIOS or 'no matching device found'

hi,
i'm struggling with dual head as well.

I've tried switching the BIOS settings for primary device, with the PCI s3 Virge card as primary the xorg error for the Intel915 (inbuilt) is "cannot read V_BIOS".

with the intel as BIOS primary the S3 is reported as 'no matching device found' even though it shows up fine using LSPCI

any ideas?
-joseph
Reply With Quote
Reply

Tags
dual, head, xorg

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
kernel 2.6.24.4-64 broke Xorg dual head funknor Installation and Live Media 2 27th May 2008 05:16 PM
Configuring Xorg.conf with Dual Head griffindj Using Fedora 2 5th April 2006 03:11 AM


Current GMT-time: 07:07 (Monday, 20-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat