Problema con el panel táctil en Fedora23

Problema con el panel táctil en Fedora23

he instaladosombrero 23en miDell Vostro3550 portátil. Pero mi panel táctil no funciona correctamente. Cuando mantengo un dedo en mi TouchPad, el puntero en la pantalla parpadea todo el tiempo. Sin embargo, eso nunca sucede en Windows. Creo que hay algún problema con el controlador del panel táctil en Fedora.

¿Alguien puede sugerir qué controlador debo instalar para que el TouchPad funcione correctamente?

Respuesta1

Yo mismo he solucionado el problema. Acabo de instalar los controladores synaptics disponibles. Luego creé un enlace 99-syanptics.confdirigido específicamente a 50-synaptics.conf, ya que después de investigar un poco descubrí que ese 99-syanptics.confdebería ser el archivo de configuración real de mi máquina.

    dnf install xorg-x11-drv-synaptics*
    cd /usr/share/X11/xorg.conf.d/
    ln -s 50-synaptics.conf 99-synaptics.conf

NB: es necesario reiniciar después de esto.

Gracias GAD3R por ayudarme con sugerencias. :D

Respuesta2

GNOMO

La utilidad "mouse y panel táctil" se puede utilizar para habilitar el toque y configurar las opciones de desplazamiento en GNOME.

Espacios de trabajo de KDE Plasma

ingrese a la configuración del sistema KDE

elija Hardware/Dispositivos de entrada/Panel táctil (si no está allí, instale kcm_touchpad primero y luego reinicie Configuración del sistema. Está instalado de forma predeterminada).

seleccione la pestaña Tocar

marque la casilla de verificación "Habilitar toque"

configure algunas acciones de toque en "Botones" a continuación, el valor predeterminado es no hacer nada. Alternativamente, también se puede utilizar el método de todo el sistema descrito en Otros administradores de ventanas.

LXDE

Copie el archivo /usr/share/X11/xorg.conf.d/50-synaptics.conf a

/etc/X11/xorg.conf.d/

cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/50-synaptics.conf

Luego, en tu editor de texto favorito, modifica este archivo como tal:

      Section  "InputClass"
      Identifier  "touchpad catchall"
      Driver  "synaptics"
      MatchIsTouchpad  "on"

     ####################################
     ## The lines that you need to add ##
     # Enable left mouse button by tapping
     Option  "TapButton1"  "1"
    # Enable vertical scrolling
    Option  "VertEdgeScroll"  "1"
    # Enable right mouse button by tapping lower right corner
    Option "RBCornerButton" "3"
     ####################################

    MatchDevicePath  "/dev/input/event*"
    EndSection

XFCE

Copie el archivo /usr/share/X11/xorg.conf.d/50-synaptics.conf a

/etc/X11/xorg.conf.d/

cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/50-synaptics.conf

Luego, en tu editor de texto favorito, modifica el nuevo archivo como tal:

      Section  "InputClass"
      Identifier  "touchpad catchall"
      Driver  "synaptics"
      MatchIsTouchpad  "on"

      ####################################
      ## The lines that you need to add ##
      # Enable left mouse button by tapping
      Option  "TapButton1"  "1"
      # Enable vertical scrolling
      Option  "VertEdgeScroll"  "1"
     # Enable right mouse button by tapping lower right corner
      Option "RBCornerButton" "3"
      ####################################

     MatchDevicePath  "/dev/input/event*"
     EndSection

COMPAÑERO

Copie el archivo /usr/share/X11/xorg.conf.d/50-synaptics.conf a /etc/X11/xorg.conf.d/

cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/50-synaptics.conf

Luego, en tu editor de texto favorito, modifica este archivo como tal:

      Section  "InputClass"
      Identifier  "touchpad catchall"
      Driver  "synaptics"
      MatchIsTouchpad  "on"

      ####################################
      ## The lines that you need to add ##
      # Enable left mouse button by tapping
      Option  "TapButton1"  "1"
      # Enable vertical scrolling
      Option  "VertEdgeScroll"  "1"
      # Enable right mouse button by tapping lower right corner
      Option "RBCornerButton" "3"
      ####################################

      MatchDevicePath  "/dev/input/event*"
      EndSection

Recibo la respuesta de fedoraproject.org

información relacionada