Right mouse button doesnt work
up vote
4
down vote
favorite
I have installed Ubuntu 12.04.1 on my new Lenovo IdeaPad Y580 M772DGE. Unfortunately the right mouse button of the touchpad is not working correctly. Every mouse button click is interpreted as a left mouse button click. I tried to uninstall and reinstall the synaptics (xserver-xorg-input-synaptics) drivers, but the problem is still present.
What else can I do? Any other suggestions? Is it possible to emulate a right mouse click event with a keyboard key?
12.04 mouse
add a comment |
up vote
4
down vote
favorite
I have installed Ubuntu 12.04.1 on my new Lenovo IdeaPad Y580 M772DGE. Unfortunately the right mouse button of the touchpad is not working correctly. Every mouse button click is interpreted as a left mouse button click. I tried to uninstall and reinstall the synaptics (xserver-xorg-input-synaptics) drivers, but the problem is still present.
What else can I do? Any other suggestions? Is it possible to emulate a right mouse click event with a keyboard key?
12.04 mouse
For anyone looking at this question it is definitely worth checking out this answer to a related (duplicate?) question: askubuntu.com/a/1029458/800252. It solved the problem for me (even though it seems counterintuitive since I do have a physical right mouse button. Still selecting the area emulation in Gnome Tweaks makes the physical mouse button work.
– Kvothe
Jun 12 at 14:24
add a comment |
up vote
4
down vote
favorite
up vote
4
down vote
favorite
I have installed Ubuntu 12.04.1 on my new Lenovo IdeaPad Y580 M772DGE. Unfortunately the right mouse button of the touchpad is not working correctly. Every mouse button click is interpreted as a left mouse button click. I tried to uninstall and reinstall the synaptics (xserver-xorg-input-synaptics) drivers, but the problem is still present.
What else can I do? Any other suggestions? Is it possible to emulate a right mouse click event with a keyboard key?
12.04 mouse
I have installed Ubuntu 12.04.1 on my new Lenovo IdeaPad Y580 M772DGE. Unfortunately the right mouse button of the touchpad is not working correctly. Every mouse button click is interpreted as a left mouse button click. I tried to uninstall and reinstall the synaptics (xserver-xorg-input-synaptics) drivers, but the problem is still present.
What else can I do? Any other suggestions? Is it possible to emulate a right mouse click event with a keyboard key?
12.04 mouse
12.04 mouse
asked Sep 22 '12 at 20:02
sockeqwe
12816
12816
For anyone looking at this question it is definitely worth checking out this answer to a related (duplicate?) question: askubuntu.com/a/1029458/800252. It solved the problem for me (even though it seems counterintuitive since I do have a physical right mouse button. Still selecting the area emulation in Gnome Tweaks makes the physical mouse button work.
– Kvothe
Jun 12 at 14:24
add a comment |
For anyone looking at this question it is definitely worth checking out this answer to a related (duplicate?) question: askubuntu.com/a/1029458/800252. It solved the problem for me (even though it seems counterintuitive since I do have a physical right mouse button. Still selecting the area emulation in Gnome Tweaks makes the physical mouse button work.
– Kvothe
Jun 12 at 14:24
For anyone looking at this question it is definitely worth checking out this answer to a related (duplicate?) question: askubuntu.com/a/1029458/800252. It solved the problem for me (even though it seems counterintuitive since I do have a physical right mouse button. Still selecting the area emulation in Gnome Tweaks makes the physical mouse button work.
– Kvothe
Jun 12 at 14:24
For anyone looking at this question it is definitely worth checking out this answer to a related (duplicate?) question: askubuntu.com/a/1029458/800252. It solved the problem for me (even though it seems counterintuitive since I do have a physical right mouse button. Still selecting the area emulation in Gnome Tweaks makes the physical mouse button work.
– Kvothe
Jun 12 at 14:24
add a comment |
3 Answers
3
active
oldest
votes
up vote
4
down vote
accepted
I think I can give you the answer
Open a terminal, then type:
echo "options psmouse proto=exps" | sudo tee /etc/modprobe.d/psmouse.conf
Enter your password when prompted and then press Enter.
Now, while your right mouse click should be working after a reboot, you can try doing it without a reboot, but it might crash your desktop. It didn't for me, so here it is, type in the same terminal as root:
sudo modprobe -r psmouse; sudo modprobe psmouse
hope that helps!
edit: ok, so now that the right button works, the touchpad section of the mouse settings disappeared, and so did my custom settings and the multitouch capability, which resulted in a slow mouse pointer and no ability to scroll. I think I'll write a bug report on this one.
edit2: I searched through the web, and apparently, there is some obscure way to fix this problem, but it relies on ressources and patches that aren't available so easily anymore. I fixed this problem for me by upgrading to quantal quetzal, which includes adequate (albeit not great) support for multitouch clickpads by default
thank you for your answer! I guess it would be the best to wait these few days until the final quantal quetzal release is available and hoping that ubuntu 12.10 will support the mousepad of my lenovo y580 by default. Thank you very much!
– sockeqwe
Oct 3 '12 at 13:44
add a comment |
up vote
0
down vote
Find and open the file: /usr/share/X11/xorg.conf.d/50-synaptics.conf
Find the paragraph :
# This option enables the bottom right corner to be a right button on clickpads
# and the right and middle top areas to be right / middle buttons on clickpads
# with a top button area.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Default clickpad buttons"
MatchDriver "synaptics"
Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%"
Add 2 line before Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
Option "ClickPad" "true"
Option "EmulateMidButtonTime" "0"
add a comment |
up vote
0
down vote
The top answer by @elpollodiablo did not work for me on Ubuntu 18.1 on a Dell Inspiron 15 5000 series.
As for the second answer, I do not have a file /usr/share/X11/xorg.conf.d/50-synaptics.conf to edit.
Instead I found this link instructing me to install Gnome Tweaks -> Keyboard -> Touchpad -> Mouse Click Emulation.
http://ubuntuhandbook.org/index.php/2018/07/touchpad-right-click-not-working-in-ubuntu-18-04/
That worked.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f191864%2fright-mouse-button-doesnt-work%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
I think I can give you the answer
Open a terminal, then type:
echo "options psmouse proto=exps" | sudo tee /etc/modprobe.d/psmouse.conf
Enter your password when prompted and then press Enter.
Now, while your right mouse click should be working after a reboot, you can try doing it without a reboot, but it might crash your desktop. It didn't for me, so here it is, type in the same terminal as root:
sudo modprobe -r psmouse; sudo modprobe psmouse
hope that helps!
edit: ok, so now that the right button works, the touchpad section of the mouse settings disappeared, and so did my custom settings and the multitouch capability, which resulted in a slow mouse pointer and no ability to scroll. I think I'll write a bug report on this one.
edit2: I searched through the web, and apparently, there is some obscure way to fix this problem, but it relies on ressources and patches that aren't available so easily anymore. I fixed this problem for me by upgrading to quantal quetzal, which includes adequate (albeit not great) support for multitouch clickpads by default
thank you for your answer! I guess it would be the best to wait these few days until the final quantal quetzal release is available and hoping that ubuntu 12.10 will support the mousepad of my lenovo y580 by default. Thank you very much!
– sockeqwe
Oct 3 '12 at 13:44
add a comment |
up vote
4
down vote
accepted
I think I can give you the answer
Open a terminal, then type:
echo "options psmouse proto=exps" | sudo tee /etc/modprobe.d/psmouse.conf
Enter your password when prompted and then press Enter.
Now, while your right mouse click should be working after a reboot, you can try doing it without a reboot, but it might crash your desktop. It didn't for me, so here it is, type in the same terminal as root:
sudo modprobe -r psmouse; sudo modprobe psmouse
hope that helps!
edit: ok, so now that the right button works, the touchpad section of the mouse settings disappeared, and so did my custom settings and the multitouch capability, which resulted in a slow mouse pointer and no ability to scroll. I think I'll write a bug report on this one.
edit2: I searched through the web, and apparently, there is some obscure way to fix this problem, but it relies on ressources and patches that aren't available so easily anymore. I fixed this problem for me by upgrading to quantal quetzal, which includes adequate (albeit not great) support for multitouch clickpads by default
thank you for your answer! I guess it would be the best to wait these few days until the final quantal quetzal release is available and hoping that ubuntu 12.10 will support the mousepad of my lenovo y580 by default. Thank you very much!
– sockeqwe
Oct 3 '12 at 13:44
add a comment |
up vote
4
down vote
accepted
up vote
4
down vote
accepted
I think I can give you the answer
Open a terminal, then type:
echo "options psmouse proto=exps" | sudo tee /etc/modprobe.d/psmouse.conf
Enter your password when prompted and then press Enter.
Now, while your right mouse click should be working after a reboot, you can try doing it without a reboot, but it might crash your desktop. It didn't for me, so here it is, type in the same terminal as root:
sudo modprobe -r psmouse; sudo modprobe psmouse
hope that helps!
edit: ok, so now that the right button works, the touchpad section of the mouse settings disappeared, and so did my custom settings and the multitouch capability, which resulted in a slow mouse pointer and no ability to scroll. I think I'll write a bug report on this one.
edit2: I searched through the web, and apparently, there is some obscure way to fix this problem, but it relies on ressources and patches that aren't available so easily anymore. I fixed this problem for me by upgrading to quantal quetzal, which includes adequate (albeit not great) support for multitouch clickpads by default
I think I can give you the answer
Open a terminal, then type:
echo "options psmouse proto=exps" | sudo tee /etc/modprobe.d/psmouse.conf
Enter your password when prompted and then press Enter.
Now, while your right mouse click should be working after a reboot, you can try doing it without a reboot, but it might crash your desktop. It didn't for me, so here it is, type in the same terminal as root:
sudo modprobe -r psmouse; sudo modprobe psmouse
hope that helps!
edit: ok, so now that the right button works, the touchpad section of the mouse settings disappeared, and so did my custom settings and the multitouch capability, which resulted in a slow mouse pointer and no ability to scroll. I think I'll write a bug report on this one.
edit2: I searched through the web, and apparently, there is some obscure way to fix this problem, but it relies on ressources and patches that aren't available so easily anymore. I fixed this problem for me by upgrading to quantal quetzal, which includes adequate (albeit not great) support for multitouch clickpads by default
edited Jun 3 '16 at 10:36
mchid
22.5k25082
22.5k25082
answered Oct 1 '12 at 10:06
elpollodiablo
563
563
thank you for your answer! I guess it would be the best to wait these few days until the final quantal quetzal release is available and hoping that ubuntu 12.10 will support the mousepad of my lenovo y580 by default. Thank you very much!
– sockeqwe
Oct 3 '12 at 13:44
add a comment |
thank you for your answer! I guess it would be the best to wait these few days until the final quantal quetzal release is available and hoping that ubuntu 12.10 will support the mousepad of my lenovo y580 by default. Thank you very much!
– sockeqwe
Oct 3 '12 at 13:44
thank you for your answer! I guess it would be the best to wait these few days until the final quantal quetzal release is available and hoping that ubuntu 12.10 will support the mousepad of my lenovo y580 by default. Thank you very much!
– sockeqwe
Oct 3 '12 at 13:44
thank you for your answer! I guess it would be the best to wait these few days until the final quantal quetzal release is available and hoping that ubuntu 12.10 will support the mousepad of my lenovo y580 by default. Thank you very much!
– sockeqwe
Oct 3 '12 at 13:44
add a comment |
up vote
0
down vote
Find and open the file: /usr/share/X11/xorg.conf.d/50-synaptics.conf
Find the paragraph :
# This option enables the bottom right corner to be a right button on clickpads
# and the right and middle top areas to be right / middle buttons on clickpads
# with a top button area.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Default clickpad buttons"
MatchDriver "synaptics"
Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%"
Add 2 line before Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
Option "ClickPad" "true"
Option "EmulateMidButtonTime" "0"
add a comment |
up vote
0
down vote
Find and open the file: /usr/share/X11/xorg.conf.d/50-synaptics.conf
Find the paragraph :
# This option enables the bottom right corner to be a right button on clickpads
# and the right and middle top areas to be right / middle buttons on clickpads
# with a top button area.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Default clickpad buttons"
MatchDriver "synaptics"
Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%"
Add 2 line before Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
Option "ClickPad" "true"
Option "EmulateMidButtonTime" "0"
add a comment |
up vote
0
down vote
up vote
0
down vote
Find and open the file: /usr/share/X11/xorg.conf.d/50-synaptics.conf
Find the paragraph :
# This option enables the bottom right corner to be a right button on clickpads
# and the right and middle top areas to be right / middle buttons on clickpads
# with a top button area.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Default clickpad buttons"
MatchDriver "synaptics"
Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%"
Add 2 line before Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
Option "ClickPad" "true"
Option "EmulateMidButtonTime" "0"
Find and open the file: /usr/share/X11/xorg.conf.d/50-synaptics.conf
Find the paragraph :
# This option enables the bottom right corner to be a right button on clickpads
# and the right and middle top areas to be right / middle buttons on clickpads
# with a top button area.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Default clickpad buttons"
MatchDriver "synaptics"
Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%"
Add 2 line before Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
Option "ClickPad" "true"
Option "EmulateMidButtonTime" "0"
answered Feb 10 '16 at 9:15
Avanish Kumar
1013
1013
add a comment |
add a comment |
up vote
0
down vote
The top answer by @elpollodiablo did not work for me on Ubuntu 18.1 on a Dell Inspiron 15 5000 series.
As for the second answer, I do not have a file /usr/share/X11/xorg.conf.d/50-synaptics.conf to edit.
Instead I found this link instructing me to install Gnome Tweaks -> Keyboard -> Touchpad -> Mouse Click Emulation.
http://ubuntuhandbook.org/index.php/2018/07/touchpad-right-click-not-working-in-ubuntu-18-04/
That worked.
add a comment |
up vote
0
down vote
The top answer by @elpollodiablo did not work for me on Ubuntu 18.1 on a Dell Inspiron 15 5000 series.
As for the second answer, I do not have a file /usr/share/X11/xorg.conf.d/50-synaptics.conf to edit.
Instead I found this link instructing me to install Gnome Tweaks -> Keyboard -> Touchpad -> Mouse Click Emulation.
http://ubuntuhandbook.org/index.php/2018/07/touchpad-right-click-not-working-in-ubuntu-18-04/
That worked.
add a comment |
up vote
0
down vote
up vote
0
down vote
The top answer by @elpollodiablo did not work for me on Ubuntu 18.1 on a Dell Inspiron 15 5000 series.
As for the second answer, I do not have a file /usr/share/X11/xorg.conf.d/50-synaptics.conf to edit.
Instead I found this link instructing me to install Gnome Tweaks -> Keyboard -> Touchpad -> Mouse Click Emulation.
http://ubuntuhandbook.org/index.php/2018/07/touchpad-right-click-not-working-in-ubuntu-18-04/
That worked.
The top answer by @elpollodiablo did not work for me on Ubuntu 18.1 on a Dell Inspiron 15 5000 series.
As for the second answer, I do not have a file /usr/share/X11/xorg.conf.d/50-synaptics.conf to edit.
Instead I found this link instructing me to install Gnome Tweaks -> Keyboard -> Touchpad -> Mouse Click Emulation.
http://ubuntuhandbook.org/index.php/2018/07/touchpad-right-click-not-working-in-ubuntu-18-04/
That worked.
answered Dec 8 at 18:21
Joe Molnar
114
114
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f191864%2fright-mouse-button-doesnt-work%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
For anyone looking at this question it is definitely worth checking out this answer to a related (duplicate?) question: askubuntu.com/a/1029458/800252. It solved the problem for me (even though it seems counterintuitive since I do have a physical right mouse button. Still selecting the area emulation in Gnome Tweaks makes the physical mouse button work.
– Kvothe
Jun 12 at 14:24