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.