With this brand new Sony Vaio E Series notebook,
I DO have 'right click' on:
Windows 7 on the HDD
Unbuntu (10.04 I think) on 'live USB'
I DO NOT have 'right click' on:
Mint 13 cinnamon on HDD
Mint 13 cinnamon on 'live USB'
Xubuntu on 'live USB'
Lubuntu on 'live USB'
So this is looking like some sort of hardware compatabilty issue...
Any thoughts?
Solutions?
EDIT - SOLVED with the following after some more internet searching:
- Code: Select all
sudo modprobe -r psmouse
sudo modprobe psmouse proto=imps
Dont know what it did or why it works, but it did! Only down side is that I have lost some of the touchpad functionality e.g. scroll
EDIT 2
Got better results (i..e. right click works and I have touchpad features) after searching more touchpad stuff on here and making xorg.conf file in /etc/X11. I made the relevant section look like this:
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
# This option is recommend on all Linux systems using evdev, but cannot be
# enabled by default. See the following link for details:
#
http://who-t.blogspot.com/2010/11/how-t ... rrors.html MatchDevicePath "/dev/input/event*"
Option "TapButton1" "1"
Option "TapButton2" "2"
Option "TapButton3" "3"
Option "ClickPad" "true"
Option "EmulateMidButtonTime" "0"
Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
Option "VertEdgeScroll" "true"
Option "VertTwoFingerScroll" "true"
EndSection