Gutsy Gibbon und das leidige Thema Compiz

  • Ersteller Ersteller otcho
  • Erstellt am Erstellt am
O

otcho

Guest
Themenstarter
Hi,

ich benutze seit gestern Gutsy Gibbon und schaffe es einfach nicht die Desktop-Effekte zum laufen zu bringen.
Ich benutze ein T40 mit ATI Radeon Mobility 9000. Meine Frage ist, was ich wirklich genau dafür brauche und tun muss, damit ich das zum laufen bekomme.
Denn ich hab mich schon durch zig Wiki's und Forenbeiträge gelesen/getestet und nie ist auch etwas brauchbares bei rumgekommen, ausser einem zerschossenen XServer.
Die einen sagen, ich bräuchte die fglrx-Treiber, der nächste sagt, dass die mit dem Kernel gar nicht mehr unterstützt werden, wieder einer sagt, dass müsse out-of-the-box laufen und zu guter letzt weiß ich gar nicht mehr wo vorne und hinten ist.
Ich hoffe dringlichst hier etwas kompetentere Leute anzutreffen, die mir da weiterhelfen können.
 
Ich habe Compiz Fusion auf meinem T42 mit einer der Mobility Radeon 7500 ganz gut zum laufen bekommen. Die 3D-Unterstützung läuft nur nicht von Anfang an Out-of-the-Box. Wie oTcHo schrieb, sind lediglich ein paar Änderungen an der xorg.conf notwendig. Hier ist zum Beispiel meine xorg.conf:
Code:
# xorg.conf (xorg 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.
#
# 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 "Files"
EndSection

Section "Module"
	Load	"i2c"
	Load	"bitmap"
	Load	"ddc"
	Load	"dri"
	Load	"extmod"
	Load	"freetype"
	Load	"glx"
	Load	"int10"
	Load	"vbe"
EndSection

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

Section "InputDevice"
	Identifier	"Configured Mouse"
	Driver		"mouse"
	Option		"CorePointer"
	Option		"Device"		"/dev/input/mice"
	Option		"Protocol"		"ImPS/2"
	Option		"ZAxisMapping"		"4 5"
	Option		"Emulate3Buttons"	"true"
	Option          "EmulateWheel"          "On"     #Scrollen mit dem Trackpoint
        Option          "EmulateWheelButton"    "2"     #Scrollen mit dem Trackpoint
EndSection

Section "InputDevice"
	Identifier	"Synaptics Touchpad"
	Driver		"synaptics"
	Option		"SendCoreEvents"	"true"
	Option		"Device"		"/dev/psaux"
	Option		"Protocol"		"auto-dev"
	Option		"HorizEdgeScroll"	"0"
EndSection

Section "InputDevice"
	Driver		"wacom"
	Identifier	"stylus"
	Option		"Device"	"/dev/input/wacom"
	Option		"Type"		"stylus"
	Option		"ForceDevice"	"ISDV4"		# Tablet PC ONLY
EndSection

Section "InputDevice"
	Driver		"wacom"
	Identifier	"eraser"
	Option		"Device"	"/dev/input/wacom"
	Option		"Type"		"eraser"
	Option		"ForceDevice"	"ISDV4"		# Tablet PC ONLY
EndSection

Section "InputDevice"
	Driver		"wacom"
	Identifier	"cursor"
	Option		"Device"	"/dev/input/wacom"
	Option		"Type"		"cursor"
	Option		"ForceDevice"	"ISDV4"		# Tablet PC ONLY
EndSection

Section "Device"
	Identifier	"ATI Technologies Inc Radeon Mobility M7 LW [Radeon Mobility 7500]"
	Driver		"ati"
	BusID		"PCI:1:0:0"
	Option		"VideoOverlay" "on"
	Option		"OpenGLOverlay" "off"
	Option          "XAANoOffscreenPixmaps"
        Option 		"AGPMode" 			"4"
        Option 		"AGPFastWrite"			"true"
EndSection

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

Section "Screen"
	Identifier	"Default Screen"
	Device		"ATI Technologies Inc Radeon Mobility M7 LW [Radeon Mobility 7500]"
	Monitor		"Generic Monitor"
	DefaultDepth	24
	SubSection "Display"
		Modes		"1024x768"
	EndSubSection
EndSection

Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		"Default Screen"
	InputDevice	"Generic Keyboard"
	InputDevice	"Configured Mouse"

# Uncomment if you have a wacom tablet
#	InputDevice     "stylus"	"SendCoreEvents"
#	InputDevice     "cursor"	"SendCoreEvents"
#	InputDevice     "eraser"	"SendCoreEvents"
	InputDevice	"Synaptics Touchpad"
	Option 		"AIGLX" 	"true"
EndSection

Section "DRI"
	Mode	0666
EndSection


Section "Extensions"
	Option "Composite" "Enable"
EndSection
Davon habe ich selbst folgendes ergänzt:
die komplette Module-Section:
Section "Module"
Load "i2c"
Load "bitmap"
Load "ddc"
Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "vbe"
EndSection

in der Device-Section:
Option "VideoOverlay" "on"
Option "OpenGLOverlay" "off"
Option "XAANoOffscreenPixmaps"
Option "AGPMode" "4"
Option "AGPFastWrite" "true"

und am Ende noch 2 Sections:
Section "DRI"
Mode 0666
EndSection


Section "Extensions"
Option "Composite" "Enable"
EndSection

Grafiksystem neu starten und es funktioniert. Wenn man eigene Einstellungen verwenden möchte, muss man das Paket compizconfig-settings-manager (aus den Gutsy-Paketquellen) installieren.
 
Selbst das hat bei mir nicht gereicht, da es noch Konflikte zwischen Auflösungen >1024*768 und Compiz gab :)
 
  • ok1.de
  • ok2.de
  • thinkstore24.de
  • Preiswerte-IT - Gebrauchte Lenovo Notebooks kaufen

Werbung

Zurück
Oben