mit xorg.conf und TwinView

Hi,
ich habe nun einige Anleitungen zur xserver Konfiguration durchgelesen. Aber ich krieg meine beiden Bildschirme nicht so ans laufen, wie ich es will. Der eine ist ein normaler LCD für den PC, der andere ein LCD Full HD von Philips.

Code:
Section "Files"
EndSection

Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"kbd"
	Option		"CoreKeyboard"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"pc105"
	Option		"XkbLayout"	"de"
	Option		"XkbVariant"	"nodeadkeys"
	Option		"XkbOptions"	"lv3:ralt_switch"
EndSection

Section "InputDevice"
	Identifier	"Configured Mouse"
	Driver		"mouse"
	Option		"CorePointer"
	Option		"Device"	"/dev/input/mice"
	Option		"Protocol"	"ImPS/2"
	Option		"ZAxisMapping"	"4 5"
	Option		"Emulate3Buttons"	"true"
EndSection

Section "InputDevice"
	Driver		"wacom"
	Identifier	"stylus"
	Option		"Device"	"/dev/input/wacom"
	Option		"Type"	"stylus"
	Option		"ForceDevice"	"ISDV4"# Tablet PC ONLY
EndSection

Section "InputDevice"
	Driver		"wacom"
	Identifier	"eraser"
	Option		"Device"	"/dev/input/wacom"
	Option		"Type"	"eraser"
	Option		"ForceDevice"	"ISDV4"# Tablet PC ONLY
EndSection

Section "InputDevice"
	Driver		"wacom"
	Identifier	"cursor"
	Option		"Device"	"/dev/input/wacom"
	Option		"Type"	"cursor"
	Option		"ForceDevice"	"ISDV4"# Tablet PC ONLY
EndSection

Section "Device"
	Identifier	"device0"
	Boardname	"nvidia"
	Busid		"PCI:1:0:0"
	Driver		"nvidia"
	Screen		0
	Option		"TwinView"	"on"
	Option		"TwinViewOrientation"	"clone"
	Option 		"UseEdidFreqs" "on"
EndSection

Section "device"
	Identifier	"device1"
	Boardname	"nvidia"
	Busid		"PCI:1:0:0"
	Driver		"nvidia"
	Screen		1
	Option		"TwinView"	"on"
	Option		"TwinViewOrientation"	"clone"
	Option 		"UseEdidFreqs" "on"
EndSection


Section "Monitor"
	Identifier	"monitor0"
	Vendorname	"Generic LCD Display"
	Modelname	"LCD Panel 1280x1024"
	Horizsync	31.5-64.0
	Vertrefresh	56.0 - 65.0
	Gamma	1.0
EndSection

Section "monitor"  
	Identifier	"monitor1"
	Vendorname	"Generic LCD Display"
	Modelname	"LCD Panel 1280x1024"
	Horizsync	31.5-64.0
	Vertrefresh	56.0 - 65.0
	Gamma	1.0
EndSection


Section "Screen"
	Identifier	"screen0"
	Device		"device0"
	Monitor		"monitor0"
	Defaultdepth	24
	SubSection "Display"
		Depth		24
		Virtual		1280	1024  						
		Modes 		"1280x1024@60" "1280x960@60" "1024x768@60" "800x600@60" "800x600@56" "640x480@60"
	EndSubSection
EndSection

Section "Screen"   
	Identifier	"screen1"
	Device		"device1"
	Monitor		"monitor1"
	Defaultdepth	24
	SubSection "Display"
		Depth		24
		Modes		"1280x1024@60"	"1280x960@60"	"1024x768@60"	"800x600@60"	"800x600@56"	"640x480@60"
	EndSubSection
EndSection


Section "ServerLayout"
	Identifier	"Default Layout"
  	screen "screen0" "screen1" 0 0
	Inputdevice	"Generic Keyboard"
	Inputdevice	"Configured Mouse"
EndSection

Section "Module"
	Load		"glx"
	Load		"v4l"
EndSection


Section "ServerFlags"
EndSection

Der "normale" LCD (über VGA angeschlossen) funktioniert. Der TV ist über einen DVI-HDMI Adapter angeschlossen (also am DVI Ausgang meiner GraKa)

Problem ist: der TV zeigt nichts an.

mfg
serow
 
Ich selber habe das noch nicht gemacht, allerdings die xorg.conf eines Freundes, der es so macht. Vielleicht hilft sie dir ja weiter.
 
Kannst du nicht einfach mit nvidia-settings alles nötige einstellen?
Wenn man es als root ausführt, kann da auch direkt in die xorg.conf speichern.
 
doch das hatte ich schon gelesen. aber dualview ist ja nicht was ich brauch da sich da nur auf ATI bezieht so wie ich das gelesen hab. Thx.
 
Zurück
Oben