Aspire one のマウスの設定

Aspire one に VineLinux4.2 をインストールした後のマウスの設定を書いておく。

タッチパッドのスクロールの設定。
USBマウスの設定。


タッチパッドのスクロールの設定

VineLinux4.2をインストールすると、通常では synaptics がインストールされてタッチパッドのスクロールが有効になっているはずなのに、Aspire one の場合はそうではなかった。

synaptics をインストールし、/etc/X11/xorg.conf に設定を追加してタッチパッドのスクロールを有効にする。
同時に USBマウス の設定も追加して使えるようにする。
(面倒くさい場合は全体をコピペで差し替えして保存)

タッチパッドスクロール synaptics を使う
(参考)


synaptics のインストール

$ su
# apt-get update
# apt-get install synaptics


/etc/X11/xorg.conf の設定

$ su
# gedit /etc/X11/xorg.conf


/etc/X11/xorg.conf の記述 (赤字が追加したことろ)

# XFree86 4 configuration created by pyxf86config

Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Mouse1" "SendCoreEvents"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "ServerFlags"
AllowMouseOpenFail
EndSection


Section "Files"
RgbPath "/usr/X11R6/lib/X11/rgb"
FontPath "/usr/X11R6/lib/X11/fonts/TrueType"
FontPath "/usr/X11R6/lib/X11/fonts/TTF"
FontPath "/usr/X11R6/lib/X11/fonts/japanese:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/misc:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/Type1/"
FontPath "/usr/X11R6/lib/X11/fonts/Speedo/"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/cyrillic:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/misc"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi"
FontPath "unix/:7100"
EndSection

Section "Module"
Load "dbe"
Load "extmod"
Load "glx"
Load "v4l"
Load "record"
Load "freetype"
Load "type1"
Load "dri"
Load "synaptics"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "jp106"
Option "XkbLayout" "jp"
EndSection

Section "InputDevice"
#Identifier "Mouse0"
#Driver "mouse"
#Option "Protocol" "IMPS/2"
#Option "Device" "/dev/input/mice"
#Option "ZAxisMapping" "4 5"
#Option "Emulate3Buttons" "yes"
Identifier "Mouse0"
Driver "synaptics"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizScrollDelta" "0"

EndSection

Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "/dev/input/mouse1"
Option "Buttons" "5"
Option "XAxisMapping" "4 5"
EndSection


Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "LCD Panel 1024x600"
### Comment all HorizSync and VertSync values to use DDC:
HorizSync 31.5 - 65.0
VertRefresh 50.0 - 90.0
Option "dpms"
EndSection

Section "Device"
Identifier "Videocard0"
Driver "i810"
VendorName "Videocard vendor"
BoardName "Intel 945"
Option "DDC" "off"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1024x600"
EndSubSection
EndSection

Section "DRI"
Group 0
Mode 0666
EndSection



再起動すると使えるようになる。
タッチパッドの無効は「Fn」+「F7」で出来る。