Ubuntu auf dem Dell Latitude X1 und erweiterter Desktop

Andreas Schildbach andreas at schildbach.de
Mit Mai 18 01:19:55 CDT 2005


Hallo zusammen,

ich versuche gerade meinen neuerworbenen Latitude X1 unter Ubuntu 5.04 
voll auszureizen. Es hakt noch an der einen oder anderen Stelle - 
besonders wichtig sind mir aber die Grafik-Einstellungen.

Das Notebook hat einen Intel 915GMS-Chipsatz (integrierte Grafik, aber 
besonders stromsparend).

Unter Windows habe ich es geschafft meinen Desktop folgendermassen zu 
erweitern:

- der interne Bildschirm hat 1280 x 768 Bildpunkte
- mein externer Bildschirm hat 1920 x 1200 Bildpunkte

Ich konnte beide in TrueColor ansprechen (ob 24 oder 32 Bit weiss ich im 
Moment nicht mehr).

Unter Ubuntu stand der Desktop zunaechst nur auf 1024 x 768 Bildpunkten 
zur Verfuegung, die auf das interne Display hochgeblasen dargestellt 
wurden. Nach Hinweisen aus dem Netz habe ich das Tool "915resolution" 
installiert und damit einen der Vesa-BIOS-Eintraege auf 1280 x 768 
gestellt (schon schwach dass Dell so einen Eintrag nicht von vorneherein 
zur Verfuegung stellt - ich moechte nicht wissen was alles deswegen 
nicht die native Aufloesung des Displays nutzen kann - beim BIOS selbst 
faengts schonmal an...)

Doch beim DualHead/Multi-Monitor-Support hakts dann aus. Der externe 
Monitor bleibt dunkel. Anbei mal meine xorg.conf. Ich bin mir mit den 
BusID's nicht sicher. Leider sind die ChipID's dem "X -scanpci" nicht 
bekannt, weshalb ich das nicht richtig ueberpruefen kann.

Es kommt aber z.B. folgende Fehlermeldung im Log:

(II) I810: Driver for Intel Integrated Graphics Chipsets: i810, i810-dc100,
         i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G, 915GM
(II) Primary Device is: PCI 00:02:0
(WW) I810: No matching Device section for instance (BusID PCI:0:2:1) found
(--) Chipset 915GM found

Oder spaeter:

(II) I810(0): BIOS Build: 3412
(II) I810(0): Using new Pipe switch code
(==) I810(0): Device Presence: disabled.
(WW) I810(0): Primary Pipe is B, switching off second monitor (0x800)
(==) I810(0): Display Info: enabled.

Wer kann mir helfen? Wie soll ich vorgehen?

Und hier das xorg.conf:

---

Section "Files"
	FontPath	"unix/:7100"			# local font server
	# if the local font server has problems, we can fall back on these
	FontPath	"/usr/lib/X11/fonts/misc"
	FontPath	"/usr/lib/X11/fonts/cyrillic"
	FontPath	"/usr/lib/X11/fonts/100dpi/:unscaled"
	FontPath	"/usr/lib/X11/fonts/75dpi/:unscaled"
	FontPath	"/usr/lib/X11/fonts/Type1"
	FontPath	"/usr/lib/X11/fonts/CID"
	FontPath	"/usr/lib/X11/fonts/100dpi"
	FontPath	"/usr/lib/X11/fonts/75dpi"
         # paths to defoma fonts
	FontPath	"/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
	FontPath	"/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"
EndSection

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

Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"keyboard"
	Option		"CoreKeyboard"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"pc105"
	Option		"XkbLayout"	"de"
	Option		"XkbOptions"	"nodeadkeys"
EndSection

Section "InputDevice"
	Identifier	"Configured Mouse"
	Driver		"mouse"
	Option		"CorePointer"
	Option		"Device"		"/dev/input/mice"
	Option		"Protocol"		"ImPS/2"
	Option		"Emulate3Buttons"	"true"
	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 "Device"
	Identifier	"device0"
	Driver		"i810"
	BusID		"PCI:0:2:0"
	Screen		0
EndSection

Section "Device"
	Identifier	"device1"
	Driver		"i810"
	BusID		"PCI:0:2:1"
	Screen		1
EndSection

Section "Monitor"
	Identifier	"monitor0"
	Option		"DPMS"
EndSection

Section "Monitor"
	Identifier	"monitor1"
	Option		"DPMS"
EndSection

Section "Screen"
	Identifier	"Internal Screen"
	Device		"device0"
	Monitor		"monitor0"
	DefaultDepth	24
	SubSection "Display"
		Depth		24
		Modes		"1280x768"
	EndSubSection
EndSection

Section "Screen"
	Identifier	"External Screen"
	Device		"device1"
	Monitor		"monitor1"
	DefaultDepth	24
	SubSection "Display"
		Depth		24
		Modes		"1920x1200"
	EndSubSection
EndSection

Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		"Internal Screen"
	Screen		"External Screen" above "Internal Screen"
	InputDevice	"Generic Keyboard"
	InputDevice	"Configured Mouse"
	InputDevice	"Synaptics Touchpad"
	Option		"Xinerama" "true"
EndSection

Section "DRI"
	Mode	0666
EndSection

---

Gruss,

Andreas