will split statt clone, Xorg problem!!

apekz

New Member
Hallo Leute,

bin neu hier im Forum und auch in der freeBSD Welt ...

Habe zwei TFT Monitore und würde gerne, wie unter WinXP, den Desktop von einem auf beide Monitore erweitern.

egal was ich anstelle mein Desktop (KDE) wird immer nur verdoppelt ;'(

Habe natürlich zuerst die Suchfunktion hier im Forum und in google genützt, aber leider ohne erfolg.

Hoffe hier kann mir jemand weiterhelfen!!

Code:
Section "ServerLayout"
	Identifier     "Layout0"
#	Screen      0  "Screen0" 0 0 
	Screen	       "Screen0"
	Screen	       "Screen1" Rightof "Screen0"
	InputDevice    "Keyboard0" "CoreKeyboard"
	InputDevice    "Mouse0" "CorePointer"
	Option "Clone" "off"
	Option "Xinerama" "true"
EndSection

Section "Files"
	RgbPath      "/usr/X11R6/lib/X11/rgb"
	ModulePath   "/usr/X11R6/lib/modules"
	FontPath     "/usr/X11R6/lib/X11/fonts/misc/"
	FontPath     "/usr/X11R6/lib/X11/fonts/Type1/"
	FontPath     "/usr/X11R6/lib/X11/fonts/75dpi/"
	FontPath     "/usr/X11R6/lib/X11/fonts/100dpi/"
	FontPath     "/usr/X11R6/lib/X11/fonts/bitstream-vera/"
EndSection

Section "Module"
	Load  "extmod"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "Auto"
	Option	    "Device" "/dev/sysmouse"
	Option	    "ZAxisMapping" "4 5"
	Option	    "Emulate3Buttons"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "keyboard"
	Option	    "XkbModel" "logicdp"
	Option	    "XkbLayout" "de"
EndSection

Section "Monitor"
### Uncomment if you don't want to default to DDC:
	HorizSync    30.0 - 83.0
	VertRefresh  55.0 - 75.0
	Identifier   "B19"
EndSection

Section "Monitor"
### Uncomment if you don't want to default to DDC:
	HorizSync    30.0 - 80.0
	VertRefresh  55.0 - 75.0
	Identifier   "AOC"
EndSection

Section "Device"
	Identifier  "Card0"
	Driver      "radeon"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "B19"
	DefaultDepth     16
	SubSection "Display"
		Depth     16
		Modes    "1280x1024" "1024x768" "800x600"
	EndSubSection
EndSection

Section "Screen"
	Identifier "Screen1"
	Device     "Card0"
	Monitor    "AOC"
	DefaultDepth     16
	SubSection "Display"
		Viewport   0 0
		Depth     16
		Modes    "1280x1024" "1024x768" "800x600"
	EndSubSection
EndSection


Danke im Voraus
Andy

PS: benütze eine ATI Radeon 9500pro wobei ein Monitor am VGA und der andere am DVI-Port hängt ...
 

Anhänge

  • XF86Config.txt
    1,8 KB · Aufrufe: 266
Klingt vielelicht blöd, aber bist du sicher, dass die Datei, die du hier gepostet hast, auch wirklich ausgelesen wird? Denn du hast doch gesagt, dass es sich um ein xorg-Problem handelt. Diese Datei ist aber eine XF86Config. Hast du sie denn auch als xorg.conf in /etc/X11 abgelegt?
 
Aus Kompatibilitätsgründen wird XF86Config AFAIK ebenfalls unterstützt.
Leider sieht Deine Config-Datei rein gar nicht nach Dual-Screen aus.
Ich hänge Dir hier mal meine xorg.conf an, damit Du einen Anhaltspunkt hast, wie das ungefähr aussehen sollte.
Die Einstellungen für die Monitore und die Graka musst Du dann für Dich anpassen.

Gruß,

Ice
 

Anhänge

  • xorg.conf.txt
    2,6 KB · Aufrufe: 333
Jipp, jetzt klappt es ... komisch ist es nur, dass egal was ich versucht habe, ich es nicht geschaft habe den AOC Monitor als zwei und B19 als eins zu definieren ...

auf jeden Fall vielen Dank und nun auf zum nächsten Problem :)

Code:
Section "ServerLayout"
	Identifier     "Layout0"
	Screen	    0  "Screen1" 0 0
	Screen	    1  "Screen0" Leftof "Screen1"
	InputDevice    "Keyboard0" "CoreKeyboard"
	InputDevice    "Mouse0" "CorePointer"
EndSection

Section "ServerFlags"
	Option	     "xinerama" "true"
	Option	     "clone" "off"
EndSection

Section "Files"
	RgbPath      "/usr/X11R6/lib/X11/rgb"
	ModulePath   "/usr/X11R6/lib/modules"
	FontPath     "/usr/X11R6/lib/X11/fonts/misc/"
	FontPath     "/usr/X11R6/lib/X11/fonts/Type1/"
	FontPath     "/usr/X11R6/lib/X11/fonts/75dpi/"
	FontPath     "/usr/X11R6/lib/X11/fonts/100dpi/"
	FontPath     "/usr/X11R6/lib/X11/fonts/bitstream-vera/"
EndSection

Section "Module"
	Load  "extmod"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "Auto"
	Option	    "Device" "/dev/sysmouse"
	Option	    "ZAxisMapping" "4 5"
	Option	    "Emulate3Buttons"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "keyboard"
	Option	    "XkbModel" "logicdp"
	Option	    "XkbLayout" "de"
EndSection

Section "Monitor"
### Uncomment if you don't want to default to DDC:
	HorizSync    30.0 - 83.0
	VertRefresh  55.0 - 75.0
	Identifier   "B19"
	Option	     "DPMS"
EndSection

Section "Monitor"
### Uncomment if you don't want to default to DDC:
	HorizSync    30.0 - 80.0
	VertRefresh  55.0 - 75.0
	Identifier   "AOC"
	Option       "DPMS"
EndSection

Section "Device"
	Identifier  "Card1"
	Driver      "radeon"
	BusID	    "PCI:1:0:0"
	Screen 0 
	Option "ConnectedMonitor" "DFP, DFP"
EndSection

Section "Device"
	Identifier  "Card0"
	Driver      "radeon"
	BusID	    "PCI:1:0:0"
	Screen 1
	Option "ConnectedMonitor" "DFP, DFP"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "B19"
	DefaultDepth     16
	SubSection "Display"
		Viewport   0 0
		Depth     16
		Modes    "1280x1024" "1024x768" "800x600"
	EndSubSection
EndSection

Section "Screen"
	Identifier "Screen1"
	Device     "Card1"
	Monitor    "AOC"
	DefaultDepth     16
	SubSection "Display"
		Viewport   0 0
		Depth     16
		Modes    "1280x1024" "1024x768" "800x600"
	EndSubSection
EndSection

Section "DRI"
  Mode		0666
EndSection
 
Zurück
Oben