Benutzer jetzt online: 470 - Anmelden  » Suche  » Forum Index  

Compiz 0.7.5 works on intel gma965 X3100

silent
wrote 2 years ago


reply
Hi im im using Slax 6.0.1 and compiz works ( Great !! ) in my acer 6292 GMA965 X3100... and just wanna collect all the thread i found into this.

1. Im download all my compiz (latest) download slax-get(search the forum) and run
slax-get update
slax-get install compiz compiz-bcop libcompizconfig compizconfig-python compizconfig-backend-kconfig ccsm fusion-icon compiz-fusion-plugins-main compiz-fusion-plugins-extra compiz-fusion-plugins-unsupported python pygtk pycairo pygobject

nb: this module ussually auto insert on slax.. but nope in my machine i wonder why. so insert it manually.

2. lzm2dir all the file :
root@slax:~# lzm2dir ....your-compiz-file.lzm /
dont forget the "/"

3. Add this to your /etc/X11/xorg.conf :
Section "ServerLayout"
Identifier "Server1"
Option "AIGLX" "true"
EndSection

Section "DRI"
Group "video"
Mode 0660
EndSection

Section "Extensions"
Option "XVideo" "Enable"
Option "DAMAGE" "true"
Option "RENDER" "true"
Option "Composite" "Enable"

EndSection


add this in your "device" section :

Option "XAANoOffscreenPixmaps" "true"
Option "DRI" "true"
Option "AddARGBGLXVisuals" "True"
Option "RenderAccel" "True"
Option "VideoOverlay" "on"
Option "GARTSize" "384"
Option "DesktopSetup" "horizontal"
Option "MigrationHeuristic" "greedy"
Option "AccelMethod" "XAA"
Option "ExaNoComposite" "true"


add this to your "module" section :
Load "GLcore"
Load "dbe"
Load "dri"
Load "extmod"
Load "glx"
Load "record"
Load "xtrap"
Load "freetype"
Load "type1"


So this is my xorg.conf file :
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
RgbPath "/usr/share/X11/rgb"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/TTF"
FontPath "/usr/share/fonts/OTF"
FontPath "/usr/share/fonts/Type1"
FontPath "/usr/share/fonts/misc"
FontPath "/usr/share/fonts/75dpi/:unscaled"
EndSection

Section "Module"
Load "GLcore"
Load "dbe"
Load "dri"
Load "extmod"
Load "glx"
Load "record"
Load "xtrap"
Load "freetype"
Load "type1"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
Identifier "Monitor0"
VendorName "LCD"
ModelName "58eb"
EndSection

Section "Device"
Identifier "Card0"
Driver "intel"
VendorName "Intel Corporation"
BoardName "Mobile GM965/GL960 Integrated Graphics Controller"
BusID "PCI:0:2:0"
Option "XAANoOffscreenPixmaps" "true"
Option "DRI" "true"
Option "AddARGBGLXVisuals" "True"
Option "RenderAccel" "True"
Option "VideoOverlay" "on"
Option "GARTSize" "384"
Option "DesktopSetup" "horizontal"
Option "MigrationHeuristic" "greedy"
Option "AccelMethod" "XAA"
Option "ExaNoComposite" "true"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Viewport 0 0
Depth 1
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 4
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 8
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 15
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 16
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Server1"
Option "AIGLX" "true"
EndSection

Section "DRI"
Group "video"
Mode 0660
EndSection

Section "Extensions"
Option "XVideo" "Enable"
Option "DAMAGE" "true"
Option "RENDER" "true"
Option "Composite" "Enable"

EndSection


4. test ur compiz with this command ( with konsole ) :
root@slax:~# LIBGL_ALWAYS_INDIRECT=1 compiz --replace --indirect-rendering --sm-disable ccp &
emerald --replace &

nb: first you must disable the transparency/shadow enable in KDE theme, or u will end with window without title ( coz its happen to me :-P )

5. From this point, my compiz is work and with great performance. You can autostart compiz with this step. Open Konqueror, click the "go" tabs, and then "Autostart". Make new text file like "compiz.sh" open it with kwrite. And put this code :
#!/bin/bash
LIBGL_ALWAYS_INDIRECT=1 compiz --replace --indirect-rendering --sm-disable ccp &
emerald --replace &

now ur compiz will autostart when u log in.

6. For setting compiz --> run konsole and type "ccsm" enter
root@slax:~# ccsm

7. For setting emerald --> run konsole and type "emerald-theme-manager" enter
root@slax:~#emerald-theme-manager

thats all....!!!
 
ttuky
wrote 2 years ago


reply
Hello.
Where you can "disable the transparency/shadow enable in KDE theme"?
 
some-guy
wrote 2 years ago


reply
Actually, for intel the only required things are:

Serverlayout Section:
Option "AIGLX" "true"
Device Section:
Option "AccelMethod" "XAA" # increases speed, the version of intel's driver used doesn't have as well EXA support
Option "XAANoOfscreenPixmaps" "true"

Extensions Section:
Option "Composite" "true"

Nothing else is needed

Option "DRI" "true" # Unneded
Option "AddARGBGLXVisuals" "True" # Nvidia-specific, though it's enable by default with newer drivers
Option "RenderAccel" "True" # Unneded
Option "VideoOverlay" "on" # Unneded
Option "GARTSize" "384" # Unneded, this sets the vram size so it varies and shouldn't be used
Option "DesktopSetup" "horizontal" # Unneded, only used for multiple monitors
Option "MigrationHeuristic" "greedy" # Unneded
Option "ExaNoComposite" "true" # XAA is used, so unneeded
 
silent
wrote 2 years ago


reply
some-guy : thanks 4 the correction but this code :
Option "MigrationHeuristic" "greedy" # Unneded
Option "ExaNoComposite" "true" # XAA is used, so unneeded


is needed to fix slow scroll in 2d apps like firefox i found in other thread... so if u don't have this problem you may skip this...

sorry for my bad english... im indonesian.
 
silent
wrote 2 years ago


reply
ttuky : i think its somewhere on the themes setting / windows decoration setting im forgot... its on the control centre area..

im sorry using w*ndows on the work, hope wine will be better next
 
SunnyDrake
wrote 2 years ago


reply
mm anyone know howto alter boottime slax menu profile with new items wich can replace default config settings with this one (to use lets say "home"&"work"&"work(no whistle and belly)" and "general" config)?
 
Guest
wrote 2 years ago


reply
Is it possible to make lzm module with compiz?
 
silent
wrote 2 years ago


reply
guest : are you meant --> make compiz.lzm module for slax?

you can make module from source with tgz2lzm, or deb2lzm ( from debian packages ), or rpm2tgz
but not all works out of the box... if the program need a dependancies u must install it first
i think u should browse this forum for " make own modules "

it's on this forum and many our senior there...

success 4 u
 
jcsoh
wrote 2 years ago


reply
There is already a readymake compiz kde & compiz emerald lzm module posted by Gusterrapolis. Try it out.
compiz 0.5.1-all

http://www.slax.org/modules.php?author=130
 
Zmiulan
wrote 2 years ago


reply
Wow, it works really great on my NVidia GF6800! Thanks all! =)))))
 
jcsoh
wrote 2 years ago


reply
Here's a script to check if compiz will run on your machine:
compiz Check
http://linux.softpedia.com/get/Utilities/compiz-Check-37443.shtml
 
namqn
wrote 2 years ago


reply
I grabbed the Catalyst 8.6 module posted by gusterrapolis recently (thanks gusterrapolis), and put it into "/modules" directory.
I used slax-get to obtain compiz-0.7.4 packages and other packages as silent shown in step 1. I then copy all the .lzm modules into "/modules" directory and reboot my laptop (with an ATI integrated graphic card).

I set up a few things with "compizConfig Settings Manager" menu entry, then used "compiz Fusion Icon" menu entry. My monitor flashed once, and guess what, I've got the rotating cube guys.

I had got the same thing with Mandriva Linux One 2008 Spring, and recently Kubuntu 8.04. But it seems Slax has got it better (smoother transitions, lower CPU load).

Cheers,
 
phoenix_art
wrote 271 days ago


reply
Hello! I have a big problem! When I enable compiz KDE or compiz Emerald effects works perfectly and fast but sometimes if I try to open Kmenu and its menus it freezes and I can only move the mouse cursor. :(

My xorg.conf -> http://pastebin.com/m452c36a6

My glxinfo -> http://pastebin.com/m402a8d81
 

  » Suche  » Forum Index  

Post your reply

Your name (Login):

Message:

These HTML tags are allowed: <quote>, <b>, <u>, <i>, <pre>, <code>, <small>, <h1>, <h2>, <h3>, <li>



Visit Tomas M's blog for fun, mostly on religious idiocy.