どーもstingerです。実はTurbo userなんですが、
いつも参考にさせていただいています。
> ノートパソコンにVine2.5入れてるんですが、ポインタマウスが昨日しません。
> USBマウスをつなげばマウスが使えるのですが、ノートについてるポインタマウスを
> 機能させる方法がわかりません。
> ご存知の方いましたらよろしくおねがいします。
>
> ノートの機種はSonyVAIOのPCG-GR3F/BPです
> よろしくお願いします。
>
/etc/X11/XF86Config (vineは違うのかな?)を
Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Mouse1" "SendCoreEvents" #こいつを追加。
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
----------------------省略----------------------------
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/input/mouse0"
Option "Buttons" "5"
Option "ZAxisMapping" "4 5"
EndSection
#↓こいつを追加
Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "PS/2"
Option "Device" "/dev/psaux"
EndSection
Optinは自分の環境にあわせて変えてください。
あと、BackUpは忘れずに!