View Full Version : [ubuntu] mouse issues - right click
eschmidt90
May 7th, 2008, 04:45 PM
Hi, I'm using an intel macbook running ubuntu 7.10
I'm trying to set up my mouse right click. I have tried everything from installing libraries proported to fix it to editing xorg.conf - all suggestions found on these forums. I cannot right click despite all that I have tried.
any ideas?
avtolle
May 7th, 2008, 04:48 PM
Try F12; it works for me.
Rog-Mahal
May 7th, 2008, 05:15 PM
have you tried the commands in the community docs here? (https://help.ubuntu.com/community/MacBook#head-b0c1214684daee45c97d31d9113d7719accdf060) Their first option under right/middle click worked like a charm after I restarted x. It maps right click to the small enter key on the right of the space bar. What model and generation of macbook do you have anyway?
eschmidt90
May 7th, 2008, 06:01 PM
I have no idea how to chart generations, but my macbook was purchased in february of this year.
f12 is mapped to volume at the moment because thats the picture on the button. f12 worked out of the box (so to speak) when I had 6.10 on my iBook.
I have tried every suggestion I could find on this forum, but I'll have a look and see if I've tried those yet.
#####################EDIT####################
I went to try the above commands, but my macbook has no such lower right enter key - I don't know what to put in its place.
avtolle
May 7th, 2008, 06:13 PM
Oops; wrong thread. Sorry.
flaggh
May 7th, 2008, 07:20 PM
Try replacing the Input Device section of your xorg file with the one embedded in the following post:
http://ubuntuforums.org/showpost.php?p=3910525&postcount=103
You will have to restart X for the changes to take effect. To right click you just need to quickly tap two fingers on the touch pad. Tapping three fingers will work as a middle mouse button and a single finger is a normal click. There is also two finger scrolling and other features included.
flaggh
May 7th, 2008, 07:25 PM
You should also take a look at the Ubuntu Macbook wiki:
https://help.ubuntu.com/community/MacBook_Santa_Rosa
It has plenty of info on setting up the touchpad.
eschmidt90
May 7th, 2008, 07:47 PM
I have already tried both of the above solutions. Both to no avail, and therein lies the rub.
flaggh
May 7th, 2008, 08:14 PM
I have already tried both of the above solutions. Both to no avail, and therein lies the rub.
Does your touchpad still work? Do any of the other added functions work? It will be easier to help if you post your xorg.conf file.
eschmidt90
May 7th, 2008, 09:01 PM
touchpad works, added features do not.
here is xorg.conf:
# xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg
Section "Files"
EndSection
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "true"
EndSection
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "SHMConfig" "true"
Option "HorizEdgeScroll" "0"
Option "TapButton1" "1"
Option "TapButton2" "3"
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "stylus"
Option "Device" "/dev/input/wacom"
Option "Type" "stylus"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "eraser"
Option "Device" "/dev/input/wacom"
Option "Type" "eraser"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "cursor"
Option "Device" "/dev/input/wacom"
Option "Type" "cursor"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection
Section "Device"
Identifier "Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller"
Driver "intel"
BusID "PCI:0:2:0"
EndSection
Section "Monitor"
Identifier "Color LCD"
Option "DPMS"
EndSection
Section "Screen"
Identifier "Default Screen"
Device "Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller"
Monitor "Color LCD"
DefaultDepth 24
SubSection "Display"
Modes "1280x800"
EndSubSection
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
# Uncomment if you have a wacom tablet
# InputDevice "stylus" "SendCoreEvents"
# InputDevice "cursor" "SendCoreEvents"
# InputDevice "eraser" "SendCoreEvents"
InputDevice "Synaptics Touchpad"
EndSection
flaggh
May 7th, 2008, 09:37 PM
Do you have a USB mouse plugged into the computer while you are trying this? If you do, first thing I would do is restart the computer with no mouse connected.
Rather than selectively choose parameters as it appears you have done, have you tried copying and pasting the entire touchpad section from the wiki? There may be other parameters that are necessary such as MaxTapTime, FingerLow, FingerHigh, etc. I would try the whole thing first and then eliminate the options as you see fit.
cyberdork33
May 7th, 2008, 10:11 PM
f12 is mapped to volume at the moment because thats the picture on the button. f12 worked out of the box (so to speak) when I had 6.10 on my iBook.
For some unknown reason, Apple decided to make the default action of the F-keys whatever special function is assigned to them instead of, well, the actual f-key. When support for these keyboards was added to Linux, whomever made the needed changes decided to mimic this behavior.... thus, F12, is actually Fn+F12.
eschmidt90
May 8th, 2008, 08:54 AM
tried - and failed. I copied the whole section, this still isn't working.
flaggh
May 8th, 2008, 01:08 PM
Sorry. I wish I could be more help. One last thing you could try is to comment out the line at the bottom that says: InputDevice "Configured Mouse"
It may be overiding any touchpad settings you have.
eschmidt90
May 8th, 2008, 07:25 PM
This, and here's the big surprise, did not work either. I'm begining to think my lap top is simply taunting me.
vBulletin® v3.8.4, Copyright ©2000-2012, Jelsoft Enterprises Ltd.