Dualmonitoring mit Intel GMA X3100

M

marbus16

Jungspund
Moinmoin,

mein Laptop ist nach 2 Monaten RMA endlich mal wieder bei mir...

Unter Windows klappts alles bestens: 1280x800px auf dme Laptop-Bildschirm sowie der Samsung 20" 1600x1200px über VGA angebunden. Aber unter Ubuntu 8.10 kann ich für den TFT maximal 1600x1024 einstellen, wo das bild sehr wirr aussieht. und 1280x1024px sind nicht wirklich das wahre auf einem 20" TFT...

Weiß da jemand Rat? Bis jetzt hab ich noch keine Treiber selbst installiert, sollte ich mir erstmal Intel-Treiber selbstkompilieren?

mfG
Marbus
 
Post deine /etc/X11/xorg.conf vielleicht hast du von da aus eine Beschränkung drinnen. Falls das ganze etwas dynamischer werden soll schau dir "xrandr" an damit solltest du nahezu beliebige video modi einstellen können.
 
Code:
# xorg.conf (X.Org 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 xorg.conf manual page.
# (Type "man 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.
#
# Note that some configuration settings that could be done previously
# in this file, now are automatically configured by the server and settings
# here are ignored.
#
# 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 "Monitor"
	Identifier	"Configured Monitor"
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Monitor		"Configured Monitor"
	Device		"Configured Video Device"
	SubSection "Display"
		Virtual	2880 1024
	EndSubSection
EndSection

Section "Device"
	Identifier	"Configured Video Device"
EndSection

das wäre die xorg.conf, bei apt-get install xrandr wird fehlender installationskandidat gemeldet und x11-xserver-utils ist schon installiert...
 
Zurück
Oben