Ayuda me he cargado beryl y compiz

Cuento el problema el caso es que toquete unas cosas en el xorg.conf de un tutorial del foro y me di cuenta de que era para una grafica ati y yo tengo una intel en el portatil; y despues de no tener escritorio grafico, beryl y compiz no me funcionan copio hasta donde segui del tutorial:


Aceleracion 3D Ati, Ubuntu Edgy , Ubuntu Dapper
Enviado por Jersoncito el Dom, 12/11/2006 - 06:32 Imagen y Sonido

Esto lo extraje del wiki en ingles Instalacion Ubuntu Edgy/Dapper:

UBUNTU EDGY

Con Ubuntu Edgy viene incluido el driver 8.28.8 para las tarjetas Radeon 8500+ y las X-series hasta la X1900.
En Ubuntu Edgy la extension Composite ya viene habilitada, sin embargo, fglrx no soporta Composite con DRI. La solucion es desahibiltar la extension Composite en el Xorg.conf asi:

En una terminal:

sudo gedit /etc/X11/xorg.conf

Luego al final del todo el texto, agregar estas lineas:

Section "Extensions"
Option "Composite" "Disable"
EndSection

Despues guardar y cerrar.

Ahora hay que instalar el driver, pero asegurarse que los repositorios multiverse y universe estan habilitados. Asi que en la terminal (una linea a la vez):

sudo apt-get update
sudo apt-get install linux-restricted-modules-$(uname -r) #Okay if it is already installed
sudo apt-get install xorg-driver-fglrx
sudo depmod -a
sudo aticonfig --initial

bran terminal y escriban:

fglrxinfo

Luego les aparecera su driver correspondiente, en mi caso que use una laptop Acer Travelmate 2440 queda lo sig:

display: :0.0 screen: 0
OpenGL vendor string: ATI Technologies Inc.
OpenGL renderer string: RADEON XPRESS Series Generic
OpenGL version string: 2.0.6011 (8.28.8 )

Otra manera de comprobar que han logrado la aceleracion grafica es con:

glxgears –iacknowledgethatthistoolisnotabenchmark


hasta aqui el ultimo comando fue el unico que no me ejecuto...

hora cuando ejecuto habilitar efectos del escritorio me sale el siguente error "los efectos del escritorio no se han podido activar"

ahora cuando selecciono como "window manager" a beryl no me marca absolutamente nada y se regresa a metacity

por favor algun alma caritativa que me diga como solucionar este problema
Porque el driver de las ATI no soporta la extensión composite, que es la que necesitas para renderizar en AIGLX, pero en XGL no necesitas nada de eso, en la web de beryl tienes un tutorial de como instalar beryl con XGL en un sencillo tutorial: http://ubuntuforums.org/showthread.php?p=2420732#post2420732

Saludos, espero que te sirva de ayuda ese enlace
pero supuestamente ya tengo instalado el driver de intel de nuevo, ademas compiz funcionaba desde un principio sin moverle nada
vegeta777 escribió:pero supuestamente ya tengo instalado el driver de intel de nuevo, ademas compiz funcionaba desde un principio sin moverle nada

Section "Extensions"
Option "Composite" "Disable"
EndSection

Esa configuración da problemas, prueba:

Section "Extensions"
Option "Composite" "0"
EndSection

Saludos

P.D.: desactivaste en la lista de linux-restricted modules el módulo fglrx antes de instalar el nuevo driver?
Section "Extensions"
Option "Composite" "Disable"
EndSection

Esto lo deje como lo tenia antes "Enable"

lo de desactivar el modulo fglrx no supe como hacerlo, de igual manera muchas gracias a los que respondieron, sali por la puerta falsa y volvi a instalar todo desde 0, lo bueno es que en un dia lo configure todo como lo tenia antes X-D
vegeta777 escribió:Section "Extensions"
Option "Composite" "Disable"
EndSection

Esto lo deje como lo tenia antes "Enable"

lo de desactivar el modulo fglrx no supe como hacerlo, de igual manera muchas gracias a los que respondieron, sali por la puerta falsa y volvi a instalar todo desde 0, lo bueno es que en un dia lo configure todo como lo tenia antes X-D

Si lo dejas en "enable" no te irá ni siquiera la aceleración gráfica, para instalar el driver propietario debes "inutilizar" el driver libre que trae por defecto, que te va un poco peor, mírate este manual.
Para desactivar el antiguo driver fglrx, antes que nada, haz esto:

sudo gedit /etc/default/linux-restricted-modules-common

y ahora edita la linea que pone DISABLED_MODULES="" por DISABLED_MODULES="fglrx" y guarda el documento. Una vez echo eso ya puedes bajarte el driver de ATI para tu targeta e instalarlo sin más preocupaciones.

Salu2

P.D.: el archivo debe estar como te he dicho, el driver de ATI no soporta la extensión "composite", déjalo en 0, ni en enabe ni disable; es la única línea que no te va a dar problemas, como aquí.

Section "Extensions"
Option "Composite" "0"
EndSection
P.D2: no me acuerdo si era 0 o era O, tu prueba con los dos XD, esque si lo dejas "disable" te puede dar problemas y en "enable" no tendrás aceleración gráfica
P.D3: este enlace te sirve para instalar beryl , pero en el script de instalación, donde pone "edgy main" pon "feisty main", puesto que usas ubuntu 7.04, tal y como te pongo yo a tí:

#!/bin/bash
if [ $UID -gt 0 ]; then
echo "You must run this script as root.";
else
# Backup your source list and your xorg.conf
cp /etc/apt/sources.list /etc/apt/sources.list.backup.beryl-script
cp /etc/X11/xorg.conf /etc/X11/xorg.conf.backup.beryl-script
# Add and install latest ATI binary drivers repository
echo "deb http://www.albertomilone.com/drivers/edgy/latest/32bit binary/" >> /etc/apt/sources.list
wget http://albertomilone.com/drivers/tseliot.asc -O- | apt-key add -
aptitude -y update && aptitude -y install linux-restricted-modules-$(uname -r) xorg-driver-fglrx
# Autoconfigure your current xorg.conf
sudo depmod -a
aticonfig --initial
aticonfig --overlay-type=Xv
echo "Section \"Extensions\"
Option \"Composite\" \"0\"
EndSection" >> /etc/X11/xorg.conf
# Add and install latest beryl and xgl packages
echo "deb http://ubuntu.beryl-project.org/ feisty main" >> /etc/apt/sources.list
wget http://ubuntu.beryl-project.org/root@lupine.me.uk.gpg -O- | apt-key add -
aptitude -y update && aptitude -y dist-upgrade
aptitude -y install xserver-xgl beryl emerald emerald-themes
# Now we create a XGL launcher and a session menu entry to start gnome with XGL
echo "#!/bin/sh
Xgl -fullscreen :1 -ac -br -accel glx:pbuffer -accel xv:pbuffer &
sleep 4
export DISPLAY=:1
cookie="$(xauth -i nextract - :0 | cut -d ' ' -f 9)"
xauth -i add :1 . "$cookie"
exec gnome-session" >> /usr/bin/startxgl.sh
chmod +x /usr/bin/startxgl.sh
echo "[Desktop Entry]
Encoding=UTF-8
Name=Xgl
Comment=Start an Xgl Session
Exec=/usr/bin/startxgl.sh
Icon=
Type=Application" >> /usr/share/xsessions/xgl.desktop
# We create an desktop icon and a menu entry, also add beryl-manager to startup programs
echo "[Desktop Entry]
Encoding=UTF-8
Name=Beryl Manager
GenericName=3D Window Manager
Comment=Beryl Manager daemon
Icon=/usr/share/icons/hicolor/scalable/apps/beryl-manager.svg
Exec=beryl-manager
Terminal=false
Type=Application
Categories=GTK;GNOME;Application;Utility;
StartupNotify=true
X-Ubuntu-Gettext-Domain=beryl-manager" > /etc/xdg/autostart/beryl-manager.desktop
cp /etc/xdg/autostart/beryl-manager.desktop /usr/share/applications/beryl-manager.desktop
cp /etc/xdg/autostart/beryl-manager.desktop ~/Desktop/beryl-manager.desktop
echo -e "\n\nBeryl is now installed.\n\nTo run Beryl on Ubuntu startup, please add beryl-manager to your\nstartup programs (System > Preferences > Sessions, and click on\nthe \"startup programs\" tab). Afterwards, please reboot and select \"Options - Sessions - gnome-gxl\" in the login menu to start Ubuntu with XGL.\n\nBackups of /etc/apt/sources.list and /etc/X11/xorg.conf were made:\n /etc/apt/sources.list.backup.beryl-script\n /etc/X11/xorg.conf.backup\n\n If you see a ugly gnome in the XGL session add gnome-settings-daemon to the startup programs as you did with beryl-manager before"
fi;

Haz el script con este texto, no con el que viene en la web, lo demas todo igual a como viene en la web, espero que te funcione.
ya, solo que no tengo una grafica ati, sino una intel integrada; la line de extensions ahora ya no aparece en el xorg.conf; compiz y beryl funcionan y al parecer ya me va la aceleracion 3d o por lo menos eso parece:

tarin@tarin-laptop:~$ glxinfo | grep direct
direct rendering: Yes
tarin@tarin-laptop:~$ glxgears
2624 frames in 5.0 seconds = 524.656 FPS
2782 frames in 5.0 seconds = 556.389 FPS
2648 frames in 5.0 seconds = 529.507 FPS
2590 frames in 5.0 seconds = 517.661 FPS
2509 frames in 5.0 seconds = 501.582 FPS
2464 frames in 5.0 seconds = 492.719 FPS

y esto es lo que me aparece en el xorg.conf ahora

# /etc/X11/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(5) 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"
FontPath "/usr/share/fonts/X11/misc"
FontPath "/usr/share/fonts/X11/cyrillic"
FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
FontPath "/usr/share/fonts/X11/Type1"
FontPath "/usr/share/fonts/X11/100dpi"
FontPath "/usr/share/fonts/X11/75dpi"
# path to defoma fonts
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
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" "us"
Option "XkbOptions" "lv3:ralt_switch"
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"
EndSection

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

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

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

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

Section "Device"
Identifier "Intel Corporation Mobile 915GM/GMS/910GML Express Graphics Controller"
Driver "i810"
BusID "PCI:0:2:0"
EndSection

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

Section "Screen"
Identifier "Default Screen"
Device "Intel Corporation Mobile 915GM/GMS/910GML Express Graphics Controller"
Monitor "Generic Monitor"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1280x800"
EndSubSection
SubSection "Display"
Depth 4
Modes "1280x800"
EndSubSection
SubSection "Display"
Depth 8
Modes "1280x800"
EndSubSection
SubSection "Display"
Depth 15
Modes "1280x800"
EndSubSection
SubSection "Display"
Depth 16
Modes "1280x800"
EndSubSection
SubSection "Display"
Depth 24
Modes "1280x800"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "stylus" "SendCoreEvents"
InputDevice "cursor" "SendCoreEvents"
InputDevice "eraser" "SendCoreEvents"
InputDevice "Synaptics Touchpad"
EndSection

Section "DRI"
Mode 0666
EndSection


si todavia me falta algo solo decirme que por favor
6 respuestas