Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[gelöst] 3 Screens mit xinerama
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German)
View previous topic :: View next topic  
Author Message
Macfx
n00b
n00b


Joined: 01 Jun 2004
Posts: 36
Location: Flensburg / Germany

PostPosted: Fri Nov 12, 2004 10:10 pm    Post subject: [gelöst] 3 Screens mit xinerama Reply with quote

Hi, versuche gerade mittels Xinerama 3 Monitore an einem PC zum laufen zu bekommen, doch die Screens sind immer durcheinander (Links Screen0, Mitte Screen2, Rechts Screen0)
Villeicht hat ja jemand ne Idee wenn er die xorg.conf anguckt.
Danke für eure Hilfe
Code:

Section "ServerLayout"
        Identifier     "XFree86 Configured"
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard1" "CoreKeyboard"
        Screen 0 "LeftScreen" 0 0
        Screen 1 "Center" RightOf "LeftScreen"
        Screen 2 "RightScreen" LeftOf "Center"
 
 
EndSection
 
Section "Files"
        RgbPath      "/usr/X11R6/lib/X11/rgb"
        ModulePath   "/usr/X11R6/lib/modules"
        FontPath     "/usr/share/fonts/misc/"
        FontPath     "/usr/share/fonts/TTF/"
        FontPath     "/usr/share/fonts/Type1/"
        FontPath     "/usr/share/fonts/CID/"
        FontPath     "/usr/share/fonts/75dpi/"
        FontPath     "/usr/share/fonts/100dpi/"
EndSection
 
Section "Module"
        Load  "record"
        Load  "extmod"
        Load  "dbe"
        Load  "dri"
        Load  "glx"
        Load  "xtrap"
        Load  "freetype"
        Load  "type1"
EndSection
 
Section "InputDevice"
    Identifier  "Keyboard1"
    Driver      "keyboard"
    Option     "XkbModel"      "microsoft"
    Option     "XkbLayout"     "de"
EndSection
 
Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option      "Protocol" "IMPS/2"
        Option      "Device" "/dev/mouse"
        Option "ZAxisMapping" "4 5"
EndSection
 
Section "Monitor"
        Identifier   "HTC"
        VendorName   "HTC"
        ModelName    "CM630"
        HorizSync    31.0 - 64.0
        VertRefresh  47.0 - 75.0
        Option      "DPMS"
EndSection
Section "Monitor"
        Identifier   "CENTER"
        VendorName   "htc"
        ModelName    "CM630"
        HorizSync    31.0 - 64.0
        VertRefresh  47.0 - 75.0
        Option      "DPMS"
EndSection
 
 
Section "Monitor"
        Identifier   "DAEWOO"
        VendorName   "htc"
        ModelName    "CM630"
        HorizSync    31.0 - 64.0
        VertRefresh  47.0 - 75.0
        Option      "DPMS"
EndSection
 
Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        Option     "SWcursor"                   # [<bool>]
        Option     "HWcursor"                   # [<bool>]
        Option     "NoAccel"                    # [<bool>]
        Option     "ShadowFB"                   # [<bool>]
        Option     "UseFBDev"                   # [<bool>]
        Option     "Rotate"                     # [<str>]
        Option     "VideoKey"                   # <i>
        Option     "FlatPanel"                  # [<bool>]
        Option     "FPDither"                   # [<bool>]
        Option     "CrtcNumber"                 # <i>
        Option "NoLogo" "1"
        Identifier  "NvidiaCard"
        Driver      "nvidia"
        VendorName  "nVidia Corporation"
        BoardName   "NV11DDR [GeForce2 MX 100 DDR/200 DDR]"
        BusID       "PCI:2:0:0"
EndSection
 
Section "Device"
Identifier "sis"
   BoardName "SIS"
   Driver "sis"
   BusID "PCI:1:9:0"
   #Option "DCCMode" "on"
  Option "DPMS"
EndSection
 
Section "Device"
Identifier "ATI"
   BoardName "ATI"
   Driver "ati"
   BusID "PCI:1:6:0"
   #Option "DCCMode" "on"
  Option "DPMS"
EndSection
 
Section "Screen"
  Identifier   "LeftScreen"
  Device       "NvidiaCard"
  Monitor      "HTC"
  DefaultDepth 24
EndSection
 
Section "Screen"
  Identifier   "Center"
  Device       "ATI"
  Monitor      "CENTER"
  DefaultDepth 24
EndSection
 
Section "Screen"
  Identifier   "RightScreen"
  Device       "SIS"
  Monitor      "DAEWOO"
  DefaultDepth 24
EndSection
 
 
Section "ServerFlags"
   Option "Xinerama"
EndSection


Last edited by Macfx on Sun Nov 14, 2004 11:22 am; edited 1 time in total
Back to top
View user's profile Send private message
R!tman
Veteran
Veteran


Joined: 18 Dec 2003
Posts: 1303
Location: Zurich, Switzerland

PostPosted: Fri Nov 12, 2004 10:40 pm    Post subject: Reply with quote

So weit ich weiss reicht es nicht nur "LeftScreen" usw zu schreiben. Ich habe mein xinerama mit (nur) zwei Bildschirmen hinbekommen, indem ich in der ServerLayout Section das eingetragen habe.

Code:
Section "ServerLayout"
    Identifier  "Server Layout"
    Screen "Screen0"
    Screen "Screen1" LeftOf "Screen0"
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
EndSection


Vielleicht bringt Dich das etwas weiter.
Back to top
View user's profile Send private message
Macfx
n00b
n00b


Joined: 01 Jun 2004
Posts: 36
Location: Flensburg / Germany

PostPosted: Fri Nov 12, 2004 10:47 pm    Post subject: Reply with quote

das bringt keine Veränderung wenn ich es so mache wie du :-(
Back to top
View user's profile Send private message
frary
Guru
Guru


Joined: 27 Jan 2004
Posts: 545

PostPosted: Sat Nov 13, 2004 2:30 pm    Post subject: Reply with quote

Ich benutze zwar kein xinerama, aber um meine beiden Monitore richtig zu sortieren habe ich in der Section Device folgende Zeile:
Code:
Option "MonitorLayout"              "TDMS, CRT"   

vielleicht brauchst du sowas auch?

T
_________________
Mitleid bekommt man geschenkt;
Neid muss man sich hart erarbeiten!

I.Walter
Back to top
View user's profile Send private message
Earthwings
Bodhisattva
Bodhisattva


Joined: 14 Apr 2003
Posts: 7753
Location: Germany

PostPosted: Sat Nov 13, 2004 3:46 pm    Post subject: Reply with quote

Code:

Screen 0 "LeftScreen" 0 0
Screen 1 "Center" RightOf "LeftScreen"
Screen 2 "RightScreen" LeftOf "Center"

Das ergibt doch keinen Sinn. Der rechte Bildschirm soll links von der Mitte sein? Probier mal RightOf in der letzten Zeile.
Back to top
View user's profile Send private message
Macfx
n00b
n00b


Joined: 01 Jun 2004
Posts: 36
Location: Flensburg / Germany

PostPosted: Sat Nov 13, 2004 7:28 pm    Post subject: Reply with quote

Quote:
Das ergibt doch keinen Sinn. Der rechte Bildschirm soll links von der Mitte sein? Probier mal RightOf in der letzten Zeile.


Der mittlere Bildschirm bleibt trotzdem schwarz :-(

Quote:

Ich benutze zwar kein xinerama, aber um meine beiden Monitore richtig zu sortieren habe ich in der Section Device folgende Zeile:
Code:
Option "MonitorLayout" "TDMS, CRT"

vielleicht brauchst du sowas auch?

Ich versteh nicht ganz was "TDMS, CRT" bewirken soll.

mfg macfx
Back to top
View user's profile Send private message
frary
Guru
Guru


Joined: 27 Jan 2004
Posts: 545

PostPosted: Sun Nov 14, 2004 8:17 am    Post subject: Reply with quote

Mit dieser Zeile sage ich meinem Xserver, welcher Monitor Nr. 1 und welcher Nr.2 ist, bzw. was für Monitore angeschlossen sind. Ohne diese Angabe konnte er bei mir keinen 2. Monitor anfahren, obwohl die conf sonst gleich war.
Bei dir würde es vielleicht heißen
Code:
CRT,CRT,CRT

Ist auch nur geraten, aber versuch mal man xorg.conf, dort steht mehr zu diesen Einstellungen ( vielleicht auch, wie viele Monitore man da angeben kann und wozu )

Gruß

T
_________________
Mitleid bekommt man geschenkt;
Neid muss man sich hart erarbeiten!

I.Walter
Back to top
View user's profile Send private message
Macfx
n00b
n00b


Joined: 01 Jun 2004
Posts: 36
Location: Flensburg / Germany

PostPosted: Sun Nov 14, 2004 11:21 am    Post subject: Reply with quote

Problem gelöst, hab einfach jedem Screen ne feste Auflösung gegeben. Jetzt geht es komischerweise.
Aber danke für eure Hilfe!
mfg macfx
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German) All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum