staging.inyokaproject.org

Auflösung bei Lenovo T60

Status: Ungelöst | Ubuntu-Version: Nicht spezifiziert
Antworten |

Potatoking

Anmeldungsdatum:
30. April 2007

Beiträge: Zähle...

Hi ihr

Hab jetzt annähernd 10h in das Thema investiert, leider ohne Erfolg - daher wende ich mich jetzt ganz verzweifelt an euch:
Und zwar lauft Ubuntu auf meinem T60 langsam aber sicher richtig gut, nur bei der Grafik haperts noch etwas. Ich kriege zwei Stati hin:
- entweder läuft die Auflösung auf 1280x1024 (statt 1400x1050)
- oder die Auflösung läuft auf 1400x1050, aber es wird nicht der gesamte Bildschirm dargestellt. d.h. ich fahr dann mit der Maus zum Rand und da verschiebt es sich dann entsprechend (so wie beim scrollen halt... 😀 ) - und das Ganze in x- und y-Richtung.

Ich denke es fehlt nicht viel. So wie ich das verstanden habe, bräuchte ich nur ein korrekt konfiguriertes xorg.conf für mein Display... aber irgendwie krieg ich das nicht hin - und finden tu ich auch nix.

Danke für eure Hilfe!

elder

Avatar von elder

Anmeldungsdatum:
6. Januar 2008

Beiträge: 131

Das ist ein Problem mit deiner X konfiguration.

in der /etc/X11/xorg.conf unter Section "Screen" → SubSection "Display"
die Parameter
Depth 24
Modes "1400x1050@60"
Virtual 1400 1050
definieren, dann sollte das nach dem neustart des XServers spielen.

Potatoking

(Themenstarter)

Anmeldungsdatum:
30. April 2007

Beiträge: Zähle...

Danke für deine Antwort. Ich hab mal nachgeschaut, und das sieht eigentlich gut aus. So erhalte ich aber eben den Effekt, dass nicht der gesamte Desktop auf dem Screen Platz hat (also mit dem Scrollen)...

Hier mal mein xorg.conf:

Section "ServerLayout"
	Identifier	"default"
	screen 0 "Default Screen" 0 0
	Inputdevice	"Generic Keyboard"
	Inputdevice	"Configured Mouse"
	Inputdevice	"Synaptics Touchpad"
EndSection

Section "Files"
	# local font server
	# if the local font server has problems, we can fall back on these
	Fontpath	"unix/:7100"
	Fontpath	"/usr/share/fonts/X11/misc"
	Fontpath	"/usr/lib/X11/fonts/misc"
	Fontpath	"/usr/share/fonts/X11/cyrillic"
	Fontpath	"/usr/lib/X11/fonts/cyrillic"
	Fontpath	"/usr/lib/X11/fonts/100dpi/:unscaled"
	Fontpath	"/usr/lib/X11/fonts/75dpi/:unscaled"
	Fontpath	"/usr/share/fonts/X11/Type1"
	Fontpath	"/usr/lib/X11/fonts/Type1"
	Fontpath	"/usr/share/fonts/X11/CID"
	Fontpath	"/usr/lib/X11/fonts/CID"
	Fontpath	"/usr/share/fonts/X11/100dpi"
	Fontpath	"/usr/lib/X11/fonts/100dpi"
	Fontpath	"/usr/share/fonts/X11/75dpi"
	Fontpath	"/usr/lib/X11/fonts/75dpi"
EndSection

Section "Module"
	Load		"bitmap"
	Load		"ddc"
	Load		"evdev"
	Load		"extmod"
	Load		"freetype"
	Load		"int10"
	Load		"record"
	Load		"type1"
	Load		"vbe"
	Load		"synaptics"
	Load		"glx"
	Load		"dbe"
	Load		"v4l"
EndSection

Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"keyboard"
	Option		"CoreKeyboard"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"pc104"
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"
	
	# Following lines are optional thus commented in this example.
	# Please read the synaptics(5) manpage for a detailed explanation
	# of the various options' meaning as well as a full list of options
	#
	#  Option	"LeftEdge"      "1700"
	#  Option	"RightEdge"     "5300"
	#  Option	"TopEdge"       "1700"
	#  Option	"BottomEdge"    "4200"
	#  Option	"FingerLow"	"25"
	#  Option	"FingerHigh"	"30"
	#  Option	"MaxTapTime"	"180"
	#  Option	"MaxTapMove"	"220"
	#  Option	"VertScrollDelta" "100"
	#  Option	"MinSpeed"	"0.06"
	#  Option	"MaxSpeed"	"0.12"
	#  Option	"AccelFactor" "0.0010"
	#  Option	"SHMConfig"	"on"
	#  Option	"Repeater"	"/dev/ps2mouse"
	Identifier	"Synaptics Touchpad"
	Driver		"synaptics"
	Option		"SendCoreEvents"	"true"
	Option		"Device"	"/dev/psaux"
	Option		"Protocol"	"auto-dev"
	Option		"HorizScrollDelta"	"0"
	#
EndSection

Section "Monitor"
	Identifier	"Generic Monitor"
	Vendorname	"Plug 'n' Play"
	Modelname	"Plug 'n' Play"
  modeline  "640x480@60" 25.2 640 656 752 800 480 490 492 525 -vsync -hsync
	Gamma	1.0
EndSection

Section "Device"
	Identifier	"Generic Video Card"
	Driver		"vesa"
	Busid		"PCI:1:0:0"
EndSection

Section "Device"
	Identifier	"ATI Graphics Adapter 0"
	Boardname	"ati"
	Busid		"PCI:1:0:0"
	Driver		"fglrx"
	Screen	0
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Device		"ATI Graphics Adapter 0"
	Monitor		"Generic Monitor"
	Defaultdepth	24
	SubSection "Display"
		Depth	24
		Virtual	1400	1050
		Modes		"1400x1050@60"	"1280x1024@60"	"1280x960@60"	"1024x768@60"	"800x600@60"	"800x600@56"	"640x480@60"
	EndSubSection
EndSection

Section "DRI"
	Mode	0666
EndSection

Section "ServerFlags"
EndSection

elder

Avatar von elder

Anmeldungsdatum:
6. Januar 2008

Beiträge: 131

hm. jetzt bin ich aber verwirrt.

- entweder läuft die Auflösung auf 1280x1024 (statt 1400x1050)
- oder die Auflösung läuft auf 1400x1050, aber es wird nicht der gesamte Bildschirm dargestellt.

Virtual sagt aus wie groß der virtuelle Bildschrim ist. Da dieser 1400x1050 ist musst du natürlich bei niedrigeren Auflösungen scrollen.
Jetzt schreibst du aber das du bei einer Auflösung von 1400x1050 scrollen musst nicht aber bei 1280x1024 oder verstehe ich da etwas falsch.
Was gibt xrandr aus, wenn du scrollen musst?

Potatoking

(Themenstarter)

Anmeldungsdatum:
30. April 2007

Beiträge: 4

Virtual sagt aus wie groß der virtuelle Bildschrim ist. Da dieser 1400x1050 ist musst du natürlich bei niedrigeren Auflösungen scrollen.
Jetzt schreibst du aber das du bei einer Auflösung von 1400x1050 scrollen musst nicht aber bei 1280x1024 oder verstehe ich da etwas falsch.

Ja so siehts aus. Bei 1280x1024 hab ich den ganzen Desktop auf dem Schirm. Bei 1400x1050 fehlen mir unten und rechts einige Pixel (vielleicht 100 oder so).

output von xrandr:

Screen 0: minimum 320 x 200, current 1400 x 1050, maximum 1400 x 1050
default connected 1400x1050+0+0 0mm x 0mm
   1280x1024      60.0  
   1024x768       60.0  
   800x600        60.0  
   640x480        60.0  
   1152x864       60.0  
   640x400        60.0  
   512x384        60.0  
   400x300        60.0  
   320x240        60.0  
   320x200        60.0  
   1400x1050      60.0* 

elder

Avatar von elder

Anmeldungsdatum:
6. Januar 2008

Beiträge: 131

da fällt mir jetzt nix zu ein. vielleicht hilft es die xorg.conf etwas auszudünnen.

Section "ServerLayout"
	Identifier	  "default"
        Screen           "Default Screen"
	Inputdevice     "Generic Keyboard"
	Inputdevice	"Configured Mouse"
	Inputdevice	"Synaptics Touchpad"
EndSection

Section "Files"
	# local font server
	# if the local font server has problems, we can fall back on these
	Fontpath	"unix/:7100"
	Fontpath	"/usr/share/fonts/X11/misc"
	Fontpath	"/usr/lib/X11/fonts/misc"
	Fontpath	"/usr/share/fonts/X11/cyrillic"
	Fontpath	"/usr/lib/X11/fonts/cyrillic"
	Fontpath	"/usr/lib/X11/fonts/100dpi/:unscaled"
	Fontpath	"/usr/lib/X11/fonts/75dpi/:unscaled"
	Fontpath	"/usr/share/fonts/X11/Type1"
	Fontpath	"/usr/lib/X11/fonts/Type1"
	Fontpath	"/usr/share/fonts/X11/CID"
	Fontpath	"/usr/lib/X11/fonts/CID"
	Fontpath	"/usr/share/fonts/X11/100dpi"
	Fontpath	"/usr/lib/X11/fonts/100dpi"
	Fontpath	"/usr/share/fonts/X11/75dpi"
	Fontpath	"/usr/lib/X11/fonts/75dpi"
EndSection

Section "Module"
	Load		"bitmap"
	Load		"ddc"
	Load		"evdev"
	Load		"extmod"
	Load		"freetype"
	Load		"int10"
	Load		"record"
	Load		"type1"
	Load		"vbe"
	Load		"synaptics"
	Load		"glx"
	Load		"dbe"
	Load		"v4l"
EndSection

Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"keyboard"
	Option		"CoreKeyboard"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"pc104"
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"
	
	# Following lines are optional thus commented in this example.
	# Please read the synaptics(5) manpage for a detailed explanation
	# of the various options' meaning as well as a full list of options
	#
	#  Option	"LeftEdge"      "1700"
	#  Option	"RightEdge"     "5300"
	#  Option	"TopEdge"       "1700"
	#  Option	"BottomEdge"    "4200"
	#  Option	"FingerLow"	"25"
	#  Option	"FingerHigh"	"30"
	#  Option	"MaxTapTime"	"180"
	#  Option	"MaxTapMove"	"220"
	#  Option	"VertScrollDelta" "100"
	#  Option	"MinSpeed"	"0.06"
	#  Option	"MaxSpeed"	"0.12"
	#  Option	"AccelFactor" "0.0010"
	#  Option	"SHMConfig"	"on"
	#  Option	"Repeater"	"/dev/ps2mouse"
	Identifier	"Synaptics Touchpad"
	Driver		"synaptics"
	Option		"SendCoreEvents"	"true"
	Option		"Device"	"/dev/psaux"
	Option		"Protocol"	"auto-dev"
	Option		"HorizScrollDelta"	"0"
	#
EndSection

Section "Monitor"
	Identifier	"Generic Monitor"
        Option "DPMS"
EndSection

Section "Device"
	Identifier	"ATI Graphics Adapter 0"
	Driver		"fglrx"
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Device		"ATI Graphics Adapter 0"
	Monitor		"Generic Monitor"
	Defaultdepth	24
	SubSection "Display"
		Depth	24
		Virtual	1400	1050
		Modes		"1400x1050"
	EndSubSection
EndSection

Section "DRI"
	Mode	0666
EndSection

Section "ServerFlags"
EndSection


sollte das nichts bringen evtl. noch Virtual auskommentieren.

wenn alle Stricke reissen die konfig wegsichern und mit fglrxconf eine generieren.

Potatoking

(Themenstarter)

Anmeldungsdatum:
30. April 2007

Beiträge: 4

hat mit und ohne Virtual leider nicht funktioniert... ist doch zum *** 😕

sorry für die dumme Frage: aber was ist fglrxconf? Konnte das nirgends finden

elder

Avatar von elder

Anmeldungsdatum:
6. Januar 2008

Beiträge: 131

http//wiki.cchtml.com/index.php/Configuring
aticonfig heisst das.

Antworten |