Gentoo Archives: gentoo-user-de

From: Markus Wagner <westsidenet@×××××××.de>
To: gentoo-user-de@l.g.o
Subject: Re: [gentoo-user-de] Xorg 7, fglrx und Dual (Xinerama)
Date: Sat, 15 Jul 2006 11:46:16
Message-Id: 44B8D64A.1020807@freenet.de
In Reply to: Re: [gentoo-user-de] Xorg 7, fglrx und Dual (Xinerama) by Matthias Fechner
1 Hi Matthias,
2
3 Matthias Fechner wrote:
4 > Hallo Martin,
5 >
6 > * Martin Brauns <majabrauns@×××.de> [14-07-06 20:52]:
7 >> sind Sie das ???
8 >
9 > kommt drauf auf, wenn Du meinst :)
10 >
11 >> Calculating dependencies... done!
12 >> [ebuild N ] x11-drivers/ati-drivers-8.26.18-r1 USE="opengl -acpi -doc"
13 >
14 >
15 > jepp, man sollte eix oefter mal updaten. :)
16 >
17 > Aber das behebt immer noch nicht mein Problem mit der fehlenden Config
18 > fuer X, hat hier keine eine ATI Karte im Xinerama Modus laufen?
19 >
20
21 hab bei mir auf einer Ati 9600 ein dual-head mit zwei unabhängigen
22 Screens, also zwei Server.
23 Für ein Big-Setup sollten aber nicht viele Änderungen nötig sein. Zum
24 testen solltest Du mal das ATI-Tool aticonfig verwenden.
25
26 Ja, weiß - die Doku ist nicht existent.
27 Die eigentliche Zusammensetzung der Screens erledigt man in der
28 ServerLayout-Section - hier wird die physikalische Positionierung der
29 Screens definiert.
30
31 Für xinerama brauchst Du wahrscheinlich sowas, wie "Screen
32 "Screen0" 0 0" im ServerLayout,
33 das im fglrx-Device-Bereich:
34 Option "DesktopSetup" "horizontal"
35 Option "ForceMonitor" "crt1,crt2"
36 Option "HSync2" ""
37 Option "VRefresh2" ""
38 Option "ScreenOverlap" "0"
39
40
41 und noch "Viewport 0 0" in der Screen-Section.
42
43 Das ganze ist immer ein
44
45
46 Hier mal die paar Zeilen von mir - Dual-Head mit eigenen Servern:
47
48 Section "Device"
49 Identifier "ATI Graphics Adapter connector 0"
50 Driver "fglrx"
51 .
52 .
53 .
54 Option "DesktopSetup" "horizontal"
55 Option "Mode2" "1280x1024"
56 Option "ForceMonitors" "lvds,crt1"
57 Option "HSync2" "30.0-110.0"
58 Option "VRefresh2" "50.0-150.0"
59 Option "ScreenOverlap" "0"
60 BusID "PCI:1:0:0" # vendor=1002, device=4152
61 Screen 0
62 EndSection
63
64 Section "Device"
65 Identifier "ATI Graphics Adapter connector 1"
66 Driver "fglrx"
67 BusID "PCI:1:0:0" # vendor=1002, device=4152
68 Screen 1
69 EndSection
70
71 Section "Screen"
72 Identifier "Screen0"
73 Device "ATI Graphics Adapter connector 0"
74 Monitor "Monitor0"
75 DefaultDepth 24
76
77 Subsection "Display"
78 Depth 24
79 Modes "1280x1024" "1024x768" "800x600" "640x480"
80 ViewPort 0 0 # initial origin if mode is smaller than desktop
81 # Virtual 1280 1024
82 EndSubsection
83 EndSection
84
85 Section "Screen"
86 Identifier "Screen1"
87 Device "ATI Graphics Adapter connector 1"
88 Monitor "Monitor1"
89 DefaultDepth 24
90
91 Subsection "Display"
92 Depth 24
93 Modes "1280x1024" "1024x768" "800x600" "640x480"
94 ViewPort 0 0 # initial origin if mode is smaller than desktop
95 # Virtual 1280 1024
96 EndSubsection
97 EndSection
98
99 Section "ServerLayout"
100
101 # The Identifier line must be present
102 Identifier "Server Layout"
103
104 # Each Screen line specifies a Screen section name, and optionally
105 # the relative position of other screens. The four names after
106 # primary screen name are the screens to the top, bottom, left and right
107 # of the primary screen.
108
109 Screen "Screen0"
110 #Screen "Screen1" RightOf "Screen0"
111 Screen "Screen1" LeftOf "Screen0"
112
113 # Each InputDevice line specifies an InputDevice section name and
114 # optionally some options to specify the way the device is to be
115 # used. Those options include "CorePointer", "CoreKeyboard" and
116 # "SendCoreEvents".
117
118 InputDevice "Mouse1" "CorePointer"
119 InputDevice "Keyboard1" "CoreKeyboard"
120
121 EndSection
122
123 > Gruss
124 > Matthias
125 >
126
127 Ciao,
128
129 Markus

Attachments

File name MIME type
signature.asc application/pgp-signature

Replies

Subject Author
Re: [gentoo-user-de] Xorg 7, fglrx und Dual (Xinerama) Matthias Fechner <idefix@×××××××.net>