Dualview - funktioniert nicht

G

gruenpflanze

Mitglied
Hallo zusammen!
ich versuche meinen neuen Acer AL2216W Monitor auf meinem Laptop (Ubuntu) als zweiter Monitor zum Laufen bekommen. Am Anfang hab' ich ihn einfach drangesteckt und das gesamte Bild war auf dem neuen Bildschirm, jedoch hat die Auflösung nicht gestimmt und ich möchte auf beiden ein Bild wobei mein Laptop der primäre Monitor und der Acer mein sekundärer sein soll. Ich will Fenster vom einen Monitor auf den andern verschieben können, so wies komischerweise unter Windows schon nach 3 Klicks geklappt hat :p aber da ich nun gar nicht gerne mit Windows arbeite, hab' ich mich in die xorg.conf gestürzt. Dabei habe ich mich auf diese Anleitung: http://wiki.ubuntuusers.de/Dualview gestüzt. Und dann erstmal gar keinen X mehr hochbekommen (dönt n bissl pervers, sorry :) ). Und da ich das backuppen der xorg.conf nicht für nötig hielt, musste ich n bisschen rumversuchen, jetzt klappts wieder. Unten der Teil mit den Monitoren, oben dran hats noch verschiedene Input-Devices wie Maus und so.
Laut dem obigen LInk sollte es doch so aussehen :

####### primärer Monitor ######

Section "Monitor"
EndSection

Section "Device"
EndSection

Section "Screen"
EndSection

####### sekundärer Monitor ######

Section "Monitor"
EndSection

Section "Device"
EndSection

Section "Screen"
EndSection

bei mir siehts jetzt mit einem Monitor so aus:
PHP:
Section "Monitor"
        Identifier      "Standardbildschirm"
        Option          "DPMS"
        HorizSync       30-70
        VertRefresh     50-160
EndSection

Section "Screen"
        Identifier      "Default Screen"
        Device          "Intel Corporation Mobile 915GM/GMS/910GML Express Graph ics Controller"
        Monitor         "Standardbildschirm"
        DefaultDepth    24
        SubSection "Display"
                Depth           1
                Modes           "1024x768"
        EndSubSection
        SubSection "Display"
                Depth           4
                Modes           "1024x768"
        EndSubSection
        SubSection "Display"
                Depth           8
                Modes           "1024x768"
        EndSubSection
        SubSection "Display"
                Depth           15
                Modes           "1024x768"
        EndSubSection
        SubSection "Display"
                Depth           16
                Modes           "1024x768"
        EndSubSection
        SubSection "Display"
                Depth           24
                Modes           "1024x768"
        EndSubSection
EndSection

Section "ServerLayout"
        Identifier      "Default Layout"
        Screen          "Default Screen"
        InputDevice     "Generic Keyboard"
        InputDevice     "Configured Mouse"
        InputDevice     "stylus" "SendCoreEvents"
        InputDevice     "cursor" "SendCoreEvents"
        InputDevice     "eraser" "SendCoreEvents"
        InputDevice     "Synaptics Touchpad"
EndSection

Section "DRI"
        Mode    0666
EndSection
Was sollen die vielen SubSections in Monitor ? Und was kann ich davon löschen?

Bin ein bisschen überfordert, wäre toll wenn mir jemand mit mehr Erfahrung mit der xorg.conf helfen könnte :-)
 
hi!

les dir mal die folgende anleitung durch:

Unixboard - Wiki - Dualhead

Für dich interessant ist Xinerama.

Sollte du nicht weiterkommen, dann schreib hier einfach nochmal und poste dann bitte die xorg.conf inkl. der "device section"

dann basteln wir dir hier schon was zusammen! ;)
 
hallo simplex!
Vielen Dank für deine prompte Antwort :)
Also, hier die xorg.conf wie sie momentan ist:

PHP:
# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type "man /etc/X11/xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "Files"
	FontPath	"/usr/share/X11/fonts/misc"
	FontPath	"/usr/share/X11/fonts/cyrillic"
	FontPath	"/usr/share/X11/fonts/100dpi/:unscaled"
	FontPath	"/usr/share/X11/fonts/75dpi/:unscaled"
	FontPath	"/usr/share/X11/fonts/Type1"
	FontPath	"/usr/share/X11/fonts/100dpi"
	FontPath	"/usr/share/X11/fonts/75dpi"
	# path to defoma fonts
	FontPath	"/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
	Load	"bitmap"
	Load	"ddc"
	Load	"dri"
	Load	"extmod"
	Load	"freetype"
	Load	"glx"
	Load	"int10"
	Load	"type1"
	Load	"vbe"
EndSection

Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"kbd"
	Option		"CoreKeyboard"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"pc104"
	Option		"XkbLayout"	"de"
EndSection

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

Section "InputDevice"
	Identifier	"Synaptics Touchpad"
	Driver		"synaptics"
	Option		"SendCoreEvents"	"true"
	Option		"Device"		"/dev/psaux"
	Option		"Protocol"		"auto-dev"
	Option		"HorizScrollDelta"	"0"
EndSection

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

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

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

Section "Device"
	Identifier	"Intel Corporation Mobile 915GM/GMS/910GML Express Graphics Controller"
	Driver		"i810"
	BusID		"PCI:0:2:0"
	Option		"UseFBDev"		"true"
EndSection

Section "Monitor"

EndSection

Section "Screen"
	Identifier	"Default Screen"
	Device		"Intel Corporation Mobile 915GM/GMS/910GML Express Graphics Controller"
	Monitor		"Standardbildschirm"
	DefaultDepth	24
	SubSection "Display"
		Depth		1
		Modes		"1024x768"
	EndSubSection
	SubSection "Display"
		Depth		4
		Modes		"1024x768"
	EndSubSection
	SubSection "Display"
		Depth		8
		Modes		"1024x768"
	EndSubSection
	SubSection "Display"
		Depth		15
		Modes		"1024x768"
	EndSubSection
	SubSection "Display"
		Depth		16
		Modes		"1024x768"
	EndSubSection
	SubSection "Display"
		Depth		24
		Modes		"1024x768"
	EndSubSection
EndSection

Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		"Default Screen"

EndSection

Section "DRI"
	Mode	0666
EndSection

Und hier so, wie ich sie nach deiner Anleitung versucht habe abzuändern:

PHP:
# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type "man /etc/X11/xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "Files"
	FontPath	"/usr/share/X11/fonts/misc"
	FontPath	"/usr/share/X11/fonts/cyrillic"
	FontPath	"/usr/share/X11/fonts/100dpi/:unscaled"
	FontPath	"/usr/share/X11/fonts/75dpi/:unscaled"
	FontPath	"/usr/share/X11/fonts/Type1"
	FontPath	"/usr/share/X11/fonts/100dpi"
	FontPath	"/usr/share/X11/fonts/75dpi"
	# path to defoma fonts
	FontPath	"/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
	Load	"bitmap"
	Load	"ddc"
	Load	"dri"
	Load	"extmod"
	Load	"freetype"
	Load	"glx"
	Load	"int10"
	Load	"type1"
	Load	"vbe"
EndSection

Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"kbd"
	Option		"CoreKeyboard"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"pc104"
	Option		"XkbLayout"	"de"
EndSection

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

Section "InputDevice"
	Identifier	"Synaptics Touchpad"
	Driver		"synaptics"
	Option		"SendCoreEvents"	"true"
	Option		"Device"		"/dev/psaux"
	Option		"Protocol"		"auto-dev"
	Option		"HorizScrollDelta"	"0"
EndSection

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

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

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

Section "Device"
	Identifier	"Intel Corporation Mobile 915GM/GMS/910GML Express Graphics Controller"
	Driver		"i810"
	BusID		"PCI:0:2:0"
	Option		"UseFBDev"		"true"
EndSection


# **********************************************************************
# Monitor section
# **********************************************************************
#
Section "Monitor"
   Identifier  "Display 1"
   HorizSync   30.0 - 70
   VertRefresh 50-160
EndSection
Section "Monitor"
   Identifier  "Display 2"
   HorizSync   30.0 - 70
   VertRefresh 50-160
EndSection
# **********************************************************************
# Graphics device section
# **********************************************************************
#
Section "Device"
   Identifier  "Card1"
   Driver      "mga"
   Chipset     "mgag550"
   VideoRam    32768
   Option      "mga_sdram"
   Option      "AGPMode"     "4"
   BusID       "PCI:1:0:0"
   Option      "hwcursor"    "off"
   Screen      0
EndSection
Section "Device"
   Identifier  "Card2"
   Driver      "mga"
   Chipset     "mgag550"
   VideoRam    32768
   Option      "mga_sdram"
   Option      "AGPMode"     "4"
   BusID       "PCI:1:0:0"
   Option      "hwcursor"    "off"
   Screen      1
EndSection
# **********************************************************************
# Screen sections
# **********************************************************************
#
Section "Screen"
       Identifier      "Display 1"
       Device          "Intel Corporation Mobile 915GM/GMS/910GML Express Graphics Controller"
       Monitor         "Display 1"
       DefaultDepth    16
       SubSection "Display"
               Depth           16
               Modes           "1280x1024"
       EndSubSection
EndSection
Section "Screen"
       Identifier      "Display 2"
       Device          "Intel Corporation Mobile 915GM/GMS/910GML Express Graphics Controller"
       Monitor         "Display 2"
       DefaultDepth    16
       SubSection "Display"
               Depth           16
               Modes           "1680x1050"
       EndSubSection
EndSection
# **********************************************************************
# ServerLayout sections.
# **********************************************************************
#
Section "ServerLayout"
       Identifier      "Xinerama Layout"
       Screen          0 "Display 1" 0 0
       Screen          1 "Display 2" RightOf "Display 1"
       Option          "Xinerama" "On"
	InputDevice	"Generic Keyboard"
	InputDevice	"Configured Mouse"
	InputDevice     "stylus" "SendCoreEvents"
	InputDevice     "cursor" "SendCoreEvents"
	InputDevice     "eraser" "SendCoreEvents"
	InputDevice	"Synaptics Touchpad"
EndSection
Section "DRI"
   Mode 0666
EndSection

Die InputDevices in der ServerLayout-Section unten habe ich übernommen.

Was würdest du ändern? Liebe grüsse, michi
 
du darfst doch das ganze nicht einfach hinzufügen...musst es schon auf deine "hardware" abstimmen..du verlangst doch jetzt nicht von mir bzw. uns, dass wir dir deine xorg.conf "schreiben", oder? bisschen eigenständige arbeit ist auch gefragt :)
 
Hab mich vor kurzem ein bisschen intensiver mit der xorg.conf beschäftigt, als ich ein Multiseat System einrichten wollte.
Dabei haben mir für das Verständnis und den Aufbau der xorg.conf vor allen Dingen dieser Artikel hier man xorg.conf aus dem Gentoo Wiki geholfen.
 
Zuletzt bearbeitet:
Ich habe ja einige Dinge angepasst, aber was muss ich denn sonst noch anpassen? Die Dinge in hier:
Section "Device"
Identifier "Card1"
Driver "mga"
Chipset "mgag550"
VideoRam 32768
Option "mga_sdram"
Option "AGPMode" "4"
BusID "PCI:1:0:0"
Option "hwcursor" "off"
Screen 0
EndSection
Versteh ich gar nicht, die müssten doch auch in meiner jetzigen xorg.conf zu finden sein?? Aber wo ?
 
Das hier hab ich bei ein wenig googlen gefunden. Hoffe das hilft dir weiter: *klick*
Lese dir erst einmal die Man Page der xorg.conf durch, speziell die Section Device dürfte da für dich interessant sein.
 

Ähnliche Themen

X11 Monitor Position

Zweiter Monitor geht bei Vollbildspielen aus.

Monitor getauscht, Schriftgrößen verstellt

xorg.conf für zwei Grafikkarten

Displayport + externer Monitor zeigt bei startx nichts erst bei DVI

Zurück
Oben