Dell Inspiron 7347 - Cursor inativo com meu touchpad no UBUNTU 14.04

3

Depois de instalar o Ubuntu 14.04, meu touchpad ficou inativo. Tudo funciona bem no Windows 8, mas no Ubuntu ele não responde.

Eu tentei o seguinte comando, mas o problema persiste: (.

synclient touchpadOff=0
sudo apt-get update

- (isso funciona bem)

sudo apt-get install wget gdebi wget http://http.us.debian.org/debian/pool/main/s/synaptiks/kde-config-touchpad_0.8.1-2_all.deb  

- ((isso não funciona- não foi possível encontrar o pacote por regex ...))

Qualquer ajuda é apreciada.

xinput list
    ⎡ Virtual core pointer                        id=2    [master pointer  (3)]
    ⎜   ↳ Virtual core XTEST pointer                  id=4    [slave  pointer  (2)]
    ⎜   ↳ Genius Optical Mouse                        id=10    [slave  pointer  (2)]
    ⎜   ↳ ELAN Touchscreen                            id=12    [slave  pointer  (2)]
    ⎜   ↳ ELAN Touchscreen Pen                        id=13    [slave  pointer  (2)]
    ⎜   ↳ DLL0674:00 06CB:75DB                        id=14    [slave  pointer  (2)]
    ⎜   ↳ SynPS/2 Synaptics TouchPad                  id=16    [slave  pointer  (2)]
    ⎣ Virtual core keyboard                       id=3    [master keyboard (2)]
        ↳ Virtual core XTEST keyboard                 id=5    [slave  keyboard (3)]
        ↳ Power Button                                id=6    [slave  keyboard (3)]
        ↳ Video Bus                                   id=7    [slave  keyboard (3)]
        ↳ Power Button                                id=8    [slave  keyboard (3)]
        ↳ Sleep Button                                id=9    [slave  keyboard (3)]
        ↳ Integrated_Webcam_HD                        id=11    [slave  keyboard (3)]
        ↳ AT Translated Set 2 keyboard                id=15    [slave  keyboard (3)]
        ↳ Dell WMI hotkeys                            id=17    [slave  keyboard (3)]

Saída de xinput list-props 16 :

    Device 'SynPS/2 Synaptics TouchPad':
        Device Enabled (135):    1
        Coordinate Transformation Matrix (137):    1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
        Device Accel Profile (259):    1
        Device Accel Constant Deceleration (260):    2.500000
        Device Accel Adaptive Deceleration (261):    1.000000
        Device Accel Velocity Scaling (262):    12.500000
        Synaptics Edges (293):    1765, 5371, 1638, 4474
        Synaptics Finger (294):    25, 30, 0
        Synaptics Tap Time (295):    180
        Synaptics Tap Move (296):    234
        Synaptics Tap Durations (297):    180, 180, 100
        Synaptics ClickPad (298):    1
        Synaptics Middle Button Timeout (299):    0
        Synaptics Two-Finger Pressure (300):    282
        Synaptics Two-Finger Width (301):    7
        Synaptics Scrolling Distance (302):    -106, -106
        Synaptics Edge Scrolling (303):    0, 0, 0
        Synaptics Two-Finger Scrolling (304):    1, 1
        Synaptics Move Speed (305):    1.000000, 1.750000, 0.037509, 0.000000
        Synaptics Off (306):    0
        Synaptics Locked Drags (307):    0
        Synaptics Locked Drags Timeout (308):    5000
        Synaptics Tap Action (309):    2, 3, 0, 0, 1, 3, 0
        Synaptics Click Action (310):    1, 3, 0
        Synaptics Circular Scrolling (311):    0
        Synaptics Circular Scrolling Distance (312):    0.100000
        Synaptics Circular Scrolling Trigger (313):    0
        Synaptics Circular Pad (314):    0
        Synaptics Palm Detection (315):    0
        Synaptics Palm Dimensions (316):    10, 200
        Synaptics Coasting Speed (317):    20.000000, 50.000000
        Synaptics Pressure Motion (318):    30, 160
        Synaptics Pressure Motion Factor (319):    1.000000, 1.000000
        Synaptics Resolution Detect (320):    1
        Synaptics Grab Event Device (321):    1
        Synaptics Gestures (322):    1
        Synaptics Capabilities (323):    1, 0, 0, 1, 1, 1, 1
        Synaptics Pad Resolution (324):    1, 1
        Synaptics Area (325):    0, 0, 0, 0
        Synaptics Soft Button Areas (328):    3568, 0, 4110, 0, 0, 0, 0, 0
        Synaptics Noise Cancellation (326):    26, 26
        Device Product ID (254):    2, 7
        Device Node (255):    "/dev/input/event6"

=============================================== ======

Obrigado pela ajuda útil. Problema resolvido! :)

    
por Betty 14.05.2015 / 14:14

1 resposta

4

Você pode corrigir desta forma:

  1. Executar

sudo -H gedit /etc/default/grub

Na linha de edição da janela aberta

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

deve parecer assim

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash i8042.nopnp"

Salvar arquivo e executar

sudo update-grub
  1. Executar

    echo "blacklist i2c_hid" | sudo tee /etc/modprobe.d/i2c-hid.conf
    sudo depmod -a
    sudo update-initramfs -u
    echo "synaptics_i2c" | sudo tee -a /etc/modules
    
  2. Reinicie.

Por favor tenha cuidado, não digite novamente estes comandos, mas copie-os e cole no terminal, ou você pode quebrar o sistema inteiro, se digitar errado.

Esta solução desativa o Plug & amp; Jogue por i8042 devices e, em seguida, desative i2c-hid module e ative synaptics_i2c em seu lugar.

Plug & amp; Play aciona um módulo errado para este dispositivo.

    
por Pilot6 14.05.2015 / 14:53

Tags