[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: problemas con el mouse y servidor X



Emmanuel wrote:

Bueno, configuré con dpkg-reconfigure xserver-xfree86, configuré con
xf86cfg (que tiene un fallo, si presiono con el botón 5 emulando el
clic de ratón, no puedo presionar la opción del menú que aparece, y si
quiero mover el puntero hacia la opción, tengo que dejar de clicar, y
entonces desaparece). También configuré con xf86cfg -textmode, y dejé
todo ok.

Aún así no anda ni el mouse (anda, pero mal) ni la interfaz gráfica,
así que les muestro el archivo XF86Config-4.in, a ver qué me dicen.

Conocen algún curso on-line gratuito donde se pueda aprender a
entender estas cosas?

Muchas gracias de antemano, cordiales saludos...

---------------------------------------------------------------------------------------------------------

# XF86Config-4 (XFree86 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 XF86Config-4 manual page.
# (Type "man XF86Config-4" at the shell prompt.)
#
# This file is automatically updated on xserver-xfree86 package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xfree86
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following commands as root:
#
#   cp /etc/X11/XF86Config-4 /etc/X11/XF86Config-4.custom
#   md5sum /etc/X11/XF86Config-4 >/var/lib/xfree86/XF86Config-4.md5sum
#   dpkg-reconfigure xserver-xfree86

Section "ServerLayout"
	Identifier     "Default Layout"
	Screen         "Default Screen" 0 0
	InputDevice    "Generic Keyboard"
EndSection

Tu problema está aquí, en esta sección. En la sección SeverLayout le estás diciendo al servidor X qué hardware utilizar. O sea, puedes poner mil secciones InputDevice, pero sólo utilizará las que declares aquí. Sólo agrega

InputDevice   "Mouse0"

antes de EndSection y ya.

Que quede así:

Section "ServerLayout"
   Identifier     "Default Layout"
   Screen         "Default Screen" 0 0
   InputDevice    "Generic Keyboard"
   InputDevice    "Mouse0"
EndSection

Y recuerda que XF86Config-4 no es lo mismo que xf86config-4, en Debian y todos los SO tipo unix, las mayúsculas son diferentes de las minúsculas.

Saludos!
~vi



Reply to: