Touchpad do notebook Microboard no Debian

13. Re: Touchpad do notebook Microboard no Debian

Natanael Henrique
n4t4n

(usa Arch Linux)

Enviado em 11/05/2011 - 10:42h

Não precisa rodar o comando Xorg :1 -configure novamente. Só precisava fazer isso uma vez. Como você já o havia feito, o arquivo xorg.conf já foi criado, bastando para tanto movê-lo para /etc/X11/ como você fez. Agora posta o conteúdo do arquivo xorg.conf pra eu verificar.


  


14. Re: Touchpad do notebook Microboard no Debian

Francisco Elidio Vieira Neto
neto_itape

(usa Debian)

Enviado em 11/05/2011 - 10:52h

Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/X11/misc"
FontPath "/usr/share/fonts/X11/cyrillic"
FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
FontPath "/usr/share/fonts/X11/Type1"
FontPath "/usr/share/fonts/X11/100dpi"
FontPath "/usr/share/fonts/X11/75dpi"
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
FontPath "built-ins"
EndSection

Section "Module"
Load "dri"
Load "extmod"
Load "glx"
Load "record"
Load "dri2"
Load "dbe"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
EndSection

Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option "AccelMethod" # [<str>]
#Option "DRI" # [<bool>]
#Option "ColorKey" # <i>
#Option "VideoKey" # <i>
#Option "FallbackDebug" # [<bool>]
#Option "Tiling" # [<bool>]
#Option "Shadow" # [<bool>]
#Option "SwapbuffersWait" # [<bool>]
#Option "XvMC" # [<bool>]
#Option "XvPreferOverlay" # [<bool>]
#Option "DebugFlushBatches" # [<bool>]
#Option "DebugFlushCaches" # [<bool>]
#Option "DebugWait" # [<bool>]
Identifier "Card0"
Driver "intel"
VendorName "Intel Corporation"
BoardName "Core Processor Integrated Graphics Controller"
BusID "PCI:0:2:0"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Viewport 0 0
Depth 1
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 4
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 8
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 15
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 16
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection




15. Re: Touchpad do notebook Microboard no Debian

Francisco Elidio Vieira Neto
neto_itape

(usa Debian)

Enviado em 12/05/2011 - 13:33h

To vendo que esse assunto do touchpad é mais dificil que pensei. Espero que alguem me de uma luz ... Mas agradeço as ajudas dadas até o momento.


16. Re: Touchpad do notebook Microboard no Debian

Natanael Henrique
n4t4n

(usa Arch Linux)

Enviado em 12/05/2011 - 13:44h

Não desiste, vamos tentar até conseguir #EspíritoLinux

Observe que a seção relativa ao seu mouse (InputDevice, Mouse0) já foi criada dentro do arquivo xorg.conf, portanto remova a pasta criada dentro de /etc/X11 de nome xorg.conf.d

rm -rf /etc/X11/xorg.conf.d

depois instale o gsynaptics

aptitude install gsynaptics

reinicie

veja se seu notebook não tem um botão de habilita/desabilita o touchpad. Em alguns fica logo acima do touch, em outros é uma combinação de teclas, como fn + f9, ou fn + f7. É só observar o desenho do touch.


17. Re: Touchpad do notebook Microboard no Debian

Francisco Elidio Vieira Neto
neto_itape

(usa Debian)

Enviado em 12/05/2011 - 14:21h

Fiz como solicitado e nenhuma alteração ... sobre as teclas de função já vi isso tbm e nada de mudanças ... nao teria como deixar ele com um driver padrao ... não são importantes as funções dos synaptics. O importante seria ele mexer o mouse e os botões. mais obrigado pela ajuda que estou recebendo ... e nao vou desistir nao.. heheh...


18. Re: Touchpad do notebook Microboard no Debian

Natanael Henrique
n4t4n

(usa Arch Linux)

Enviado em 12/05/2011 - 14:56h

no arquivo xorg.conf, abaixo da Seção "InputDevice, Mouse0" (Que está inclusa abaixo para exemplificar) acrescente as seguintes linhas do Driver Synaptics. Vai ficar desse jeito:


Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5 6 7"
EndSection

Section “InputDevice”
Identifier “Synaptics Touchpad”
Driver “synaptics”
Option “SendCoreEvents”
Option “Device” “/dev/psaux”
Option “Protocol” “auto-dev”
EndSection



19. Re: Touchpad do notebook Microboard no Debian

Natanael Henrique
n4t4n

(usa Arch Linux)

Enviado em 12/05/2011 - 14:59h

Esqueci isso.

Na seção "ServerLayout" adiciona isso:

InputDevice “Synaptics Touchpad” “CorePointer”


20. Re: Touchpad do notebook Microboard no Debian

Francisco Elidio Vieira Neto
neto_itape

(usa Debian)

Enviado em 12/05/2011 - 15:25h

Ficou dessa maneira

Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Synaptics Touchpad" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/X11/misc"
FontPath "/usr/share/fonts/X11/cyrillic"
FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
FontPath "/usr/share/fonts/X11/Type1"
FontPath "/usr/share/fonts/X11/100dpi"
FontPath "/usr/share/fonts/X11/75dpi"
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
FontPath "built-ins"
EndSection

Section "Module"
Load "dri"
Load "extmod"
Load "glx"
Load "record"
Load "dri2"
Load "dbe"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5 6 7"
EndSection

Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
EndSection

Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
EndSection

Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option "AccelMethod" # [<str>]
#Option "DRI" # [<bool>]
#Option "ColorKey" # <i>
#Option "VideoKey" # <i>
#Option "FallbackDebug" # [<bool>]
#Option "Tiling" # [<bool>]
#Option "Shadow" # [<bool>]
#Option "SwapbuffersWait" # [<bool>]
#Option "XvMC" # [<bool>]
#Option "XvPreferOverlay" # [<bool>]
#Option "DebugFlushBatches" # [<bool>]
#Option "DebugFlushCaches" # [<bool>]
#Option "DebugWait" # [<bool>]
Identifier "Card0"
Driver "intel"
VendorName "Intel Corporation"
BoardName "Core Processor Integrated Graphics Controller"
BusID "PCI:0:2:0"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Viewport 0 0
Depth 1
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 4
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 8
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 15
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 16
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection



21. Re: Touchpad do notebook Microboard no Debian

Natanael Henrique
n4t4n

(usa Arch Linux)

Enviado em 12/05/2011 - 15:29h

Reinicie e testa ativar desativar no botão (se tiver).


22. Re: Touchpad do notebook Microboard no Debian

Francisco Elidio Vieira Neto
neto_itape

(usa Debian)

Enviado em 12/05/2011 - 16:10h

Sem nenhum movimento ainda.


23. Re: Touchpad do notebook Microboard no Debian

Natanael Henrique
n4t4n

(usa Arch Linux)

Enviado em 12/05/2011 - 17:14h

Execute em um terminal (sim, novamente) o comando abaixo e posta aqui o resultado dele. De preferência copie e cole no terminal, para não ter erros de digitação.

egrep -i 'synap|alps|etps' /proc/bus/input/devices

Substitua a seção que você inseriu no xorg.conf (InputDevice, Synaptics) por esta

Section "InputClass"
Identifier "Touchpad"
MatchIsTouchpad "yes"
Driver "synaptics"
Option "MinSpeed" "0.5"
Option "MaxSpeed" "1.0"
Option "AccelFactor" "0.075"
Option "TapButton1" "1"
Option "TapButton2" "2"
Option "TapButton3" "3"
Option "VertTwoFingerScroll" "1"
Option "HorizTwoFingerScroll" "1"
Option "VertEdgeScroll" "1"
Option "CoastingSpeed" "8"
Option "CornerCoasting" "1"
Option "CircularScrolling" "1"
Option "CircScrollTrigger" "7"
Option "EdgeMotionUseAlways" "1"
Option "LBCornerButton" "8"
Option "RBCornerButton" "9"
EndSection

Salva e reinicia.

Em seguida, se você usa Gnome(2), vá em Sistema -> Preferências -> Mouse e, na guia "Touchpad", marque a opção "Habilitar cliques do mouse touchpad".

Posta também a saída do comando

grep "TouchPad: buttons:" /var/log/Xorg.0.log


24. Re: Touchpad do notebook Microboard no Debian

Francisco Elidio Vieira Neto
neto_itape

(usa Debian)

Enviado em 13/05/2011 - 14:26h

Fiz o comando antes de alterar o xorg.conf egrep -i 'synap|alps|etps' /proc/bus/input/devices mais nao retornou nada. Depois modifiquei o xorg.conf como expliacado e não iniciou o grafico.

Quando iniciou com erro o xorg.conf estava assim. Mas o touchpad continua do mesmo jeito parado.

Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Synaptics Touchpad" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/X11/misc"
FontPath "/usr/share/fonts/X11/cyrillic"
FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
FontPath "/usr/share/fonts/X11/Type1"
FontPath "/usr/share/fonts/X11/100dpi"
FontPath "/usr/share/fonts/X11/75dpi"
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
FontPath "built-ins"
EndSection

Section "Module"
Load "dri"
Load "extmod"
Load "glx"
Load "record"
Load "dri2"
Load "dbe"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5 6 7"
EndSection

Section "InputClass"
Identifier "Touchpad"
MatchIsTouchpad "yes"
Driver "synaptics"
Option "MinSpeed" "0.5"
Option "MaxSpeed" "1.0"
Option "AccelFaSection "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
EndSectionctor" "0.075"
Option "TapButton1" "1"
Option "TapButton2" "2"
Option "TapButton3" "3"
Option "VertTwoFingerScroll" "1"
Option "HorizTwoFingerScroll" "1"
Option "VertEdgeScroll" "1"
Option "CoastingSpeed" "8"
Option "CornerCoasting" "1"
Option "CircularScrolling" "1"
Option "CircScrollTrigger" "7"
Option "EdgeMotionUseAlways" "1"
Option "LBCornerButton" "8"
Option "RBCornerButton" "9"
EndSection

Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
EndSection

Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option "AccelMethod" # [<str>]
#Option "DRI" # [<bool>]
#Option "ColorKey" # <i>
#Option "VideoKey" # <i>
#Option "FallbackDebug" # [<bool>]
#Option "Tiling" # [<bool>]
#Option "Shadow" # [<bool>]
#Option "SwapbuffersWait" # [<bool>]
#Option "XvMC" # [<bool>]
#Option "XvPreferOverlay" # [<bool>]
#Option "DebugFlushBatches" # [<bool>]
#Option "DebugFlushCaches" # [<bool>]
#Option "DebugWait" # [<bool>]
Identifier "Card0"
Driver "intel"
VendorName "Intel Corporation"
BoardName "Core Processor Integrated Graphics Controller"
BusID "PCI:0:2:0"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Viewport 0 0
Depth 1
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 4
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 8
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 15
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 16
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection







Patrocínio

Site hospedado pelo provedor RedeHost.
Linux banner

Destaques

Artigos

Dicas

Tópicos

Top 10 do mês

Scripts