触控板无法在Acer One 725上工作

我在acer one 725上的usb驱动器上安装了ubuntu,似乎无法使触摸板工作….这就是我所拥有的

xinpbig-marc@Big-Marc:~$ xinput --list ⎡ Virtual core pointer id=2 [master pointer (3)] ⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)] ⎜ ↳ Logitech USB Optical Mouse id=10 [slave pointer (2)] ⎜ ↳ ETPS/2 Elantech Touchpad id=13 [slave pointer (2)] 

任何可以帮助我….

我在Acer 725上安装了Unity 12.04,一切正常但是触摸板。

这让它运转了。

开放式终端:

 cd /etc/modprobe.d gksudo gedit options.conf 

输入文件:

 options psmouse proto=imps 

在终端:

 sudo modprobe -r psmouse sudo modprobe psmouse 

关闭终端,注销, Fn + F7现在应该切换触摸板

得到了这个http://ubuntuforums.org/showthread.php?t=2020719&page=4

这个解决方案适用于Mint 14(Ubuntu 12.10,linux版本3.5.0-21.32),并且还可以启用此解决方案滚动..只需创建一个文件:

 /etc/modprobe.d/blacklist-acer.conf 

包含这一行:

 blacklist acer-wmi 

在终端:

 sudo modprobe -r psmouse sudo modprobe psmouse 

此解决方案适用于3.5.0-17.28,无需执行上述步骤,只需创建一个文件:

 /etc/X11/xorg.conf 

含:

 Section "InputClass" Identifier "ETPS/2 Elantech Touchpad" MatchProduct "ETPS/2 Elantech Touchpad" MatchDevicePath "/dev/input/event*" Driver "synaptics" Option "TapButton1" "1" Option "TapButton2" "3" Option "TapButton3" "2" Option "VertTwoFingerScroll" "1" Option "HorizTwoFingerScroll" "1" Option "CoastingSpeed" "10" Option "EdgeMotionMinZ" "30" Option "EdgeMotionMaxZ" "40" Option "EdgeMotionMinSpeed" "100" Option "EdgeMotionMaxSpeed" "400" Option "FingerLow" "9" Option "FingerHigh" "12" Option "EmulateMidButtonTime" "0" Option "ClickPad" "True" Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0" EndSection 

然后,重启..