Trackpad muito sensível para usar em um laptop com o Ubuntu 16.04

1

Eu tenho uma nova instalação em um Dell XPS 13 e segui estes guias:

Nenhum deles me permitiu usar o teclado e o trackpad de maneira normal. Optei por desativar o touchpad e conectar um mouse USB.

Eu também achei isso: Problema ao instalar o libinput em 16.04.2

No entanto, o libinput me dá este erro:

sudo apt-get install xserver-xorg-input-libinput

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 xserver-xorg-input-libinput : Depends: xorg-input-abi-22
                               Depends: xserver-xorg-core (>= 2:1.17.99.902)
E: Unable to correct problems, you have held broken packages.

E a solução listada aqui é para executar

install xserver-xorg-input-libinput-hwe-16.04

e isso quebrou meu ambiente gráfico e eu tive que inicializar no modo terminal e reverter o passo.

Alguém aqui enfrentou o mesmo problema? Eu realmente não quero voltar para o Windows desde que eu codifiquei muito, também eu tenho usado o OS X por mais de 10 anos, sinto muito por qualquer noobness na minha pergunta.

Muito obrigado antecipadamente.

    
por pachamaltese 14.10.2017 / 05:18

1 resposta

1

Atualmente estou no Elementary OS Loki. Eu tinha automatizado a correção desse problema criando o seguinte script de shell em /etc/X11/Xsession.d/56touchpadfix:

export 'xinput list | grep -i touchpad | awk '{ print $6 }''
xinput --set-prop "$id" "Synaptics Noise Cancellation" 20 20
xinput --set-prop "$id" "Synaptics Finger" 35 45 250
xinput --set-prop "$id" "Synaptics Scrolling Distance" 180 180
true

Você precisa ajustar os valores para o seu hardware. Meu trabalho para o laptop da série Sony SVS. Você também pode tentar ajustar outros valores listados pelo comando:     xinput --list-props "SynPS / 2 Synaptics TouchPad"

    
por Ganesh 27.11.2017 / 11:22