Posiadam laptopa z kartą graficzną Intel X3100 (wynik lspci | grep VGA):
Kod: Zaznacz cały
00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (rev 0c)Kod: Zaznacz cały
#!/bin/sh
# instalacja xserwera oraz kde
aptitude update
aptitude install xserver-xorg xbase-clients xfonts-base xterm kde-core kde-i18n-pl kdm
# instalacja compiz'a
echo "" >> /etc/apt/sources.list
echo "deb [url]http://download.tuxfamily.org/shames/debian-lenny/desktopfx/unstable/[/url] ./" >> /etc/apt/sources.list
wget [url]http://download.tuxfamily.org/shames/A42A6CF5.gpg[/url] -O- | apt-key add -
aptitude update
aptitude install compiz-fusion-kde
echo "" >> /etc/X11/xorg.conf
echo "Section \"Extensions\"" >> /etc/X11/xorg.conf
echo " Option \"Composite\" \"Enable\"" >> /etc/X11/xorg.conf
echo "EndSection" >> /etc/X11/xorg.conf
# aby uruchomic compiz'a na X3100
mkdir -p /home/przemek/.config/compiz/
echo "SKIP_CHECKS=yes" >> /home/przemek/.config/compiz/compiz-managerMoże miał ktoś już taki problem i podpowie mi jak go rozwiązać? Może brakuje mi jakiegoś magicznego wpisu w xorg.conf lub jakiegoś pakietu? Takie pakiety jak:
Kod: Zaznacz cały
xserver-xorg-video-intel
libgl1-mesa-dri
libgl1-mesa-glx
libglu1-mesa
mesa-utilsKod: Zaznacz cały
glxinfo|grep rendering
direct rendering: YesKod: Zaznacz cały
# 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.
#
# 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 "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "pl"
EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
EndSection
Section "Device"
Identifier "Configured Video Device"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
EndSection
Section "Extensions"
Option "Composite" "Enable"
EndSectionPozdrawiam,
Przemek.