My mouse wheel has stopped scrolling up and down
My mouse wheel has stopped working. It doesn't scroll up and down when previously it worked. How can I configure what each button of the mouse does? I use Ubuntu 10.10.
mouse mouse-scroll
add a comment |
My mouse wheel has stopped working. It doesn't scroll up and down when previously it worked. How can I configure what each button of the mouse does? I use Ubuntu 10.10.
mouse mouse-scroll
I got the same issue. It worked for sometime and suddenly stopped working. The below fix did it for me. stackoverflow.com/questions/41774260/…
– Venkat
Nov 17 '17 at 4:02
@Venkat - your issue refers to something completely different: Linux-on-Windows vs Ubuntu's desktop
– scruss
Mar 23 at 10:33
add a comment |
My mouse wheel has stopped working. It doesn't scroll up and down when previously it worked. How can I configure what each button of the mouse does? I use Ubuntu 10.10.
mouse mouse-scroll
My mouse wheel has stopped working. It doesn't scroll up and down when previously it worked. How can I configure what each button of the mouse does? I use Ubuntu 10.10.
mouse mouse-scroll
mouse mouse-scroll
edited Mar 13 '17 at 9:32
Zanna
51.2k13139242
51.2k13139242
asked Dec 14 '10 at 20:17
user7376
I got the same issue. It worked for sometime and suddenly stopped working. The below fix did it for me. stackoverflow.com/questions/41774260/…
– Venkat
Nov 17 '17 at 4:02
@Venkat - your issue refers to something completely different: Linux-on-Windows vs Ubuntu's desktop
– scruss
Mar 23 at 10:33
add a comment |
I got the same issue. It worked for sometime and suddenly stopped working. The below fix did it for me. stackoverflow.com/questions/41774260/…
– Venkat
Nov 17 '17 at 4:02
@Venkat - your issue refers to something completely different: Linux-on-Windows vs Ubuntu's desktop
– scruss
Mar 23 at 10:33
I got the same issue. It worked for sometime and suddenly stopped working. The below fix did it for me. stackoverflow.com/questions/41774260/…
– Venkat
Nov 17 '17 at 4:02
I got the same issue. It worked for sometime and suddenly stopped working. The below fix did it for me. stackoverflow.com/questions/41774260/…
– Venkat
Nov 17 '17 at 4:02
@Venkat - your issue refers to something completely different: Linux-on-Windows vs Ubuntu's desktop
– scruss
Mar 23 at 10:33
@Venkat - your issue refers to something completely different: Linux-on-Windows vs Ubuntu's desktop
– scruss
Mar 23 at 10:33
add a comment |
2 Answers
2
active
oldest
votes
How can I configure what each button of the mouse does?
You can check if your hardware is defect by running xev
. Open a Terminal via Applications → Accessories → Terminal and type xev
. A small white window should appear. When you move your cursor in that window, the command line output will tell you what x.org things your mouse is doing:
Button 4
in this example refers to scrolling up. If you don't get any output when scrolling, it may be your mouse is just broken.
When testing this, please ignore the output that is generated by your mouse moving around.
If you know your mouse isn't broken, and xev still doesn't give you any indication of the scroll wheel - if for example the mouse works on another computer, you are experiening a bug. In this case, read the Ubuntu Wiki's article on how to report bugs and file it against X.org. Make sure to include all details in your bug report, plus how to reproduce the error.
Be absolutely certain that your mouse works before filing a bug.
How can I configure what each button of the mouse does?
You can use btnx to re-assign your mouse buttons. This will only work if they are detected properly.
The program will ask you to go through each of your buttons to configure them. Note: If xev
doesn't recognise the scroll will, this program will not recognise it either.
add a comment |
I was using a Logitech M510 wireless bluetooth mouse and was experiencing this issue with Ubuntu 18.04. I noticed that xev was not detecting any events for the scroll. To solve my issue, I turned off the mouse and then turned it back on and it worked.
add a comment |
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',
autoActivateHeartbeat: false,
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%2f17414%2fmy-mouse-wheel-has-stopped-scrolling-up-and-down%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
How can I configure what each button of the mouse does?
You can check if your hardware is defect by running xev
. Open a Terminal via Applications → Accessories → Terminal and type xev
. A small white window should appear. When you move your cursor in that window, the command line output will tell you what x.org things your mouse is doing:
Button 4
in this example refers to scrolling up. If you don't get any output when scrolling, it may be your mouse is just broken.
When testing this, please ignore the output that is generated by your mouse moving around.
If you know your mouse isn't broken, and xev still doesn't give you any indication of the scroll wheel - if for example the mouse works on another computer, you are experiening a bug. In this case, read the Ubuntu Wiki's article on how to report bugs and file it against X.org. Make sure to include all details in your bug report, plus how to reproduce the error.
Be absolutely certain that your mouse works before filing a bug.
How can I configure what each button of the mouse does?
You can use btnx to re-assign your mouse buttons. This will only work if they are detected properly.
The program will ask you to go through each of your buttons to configure them. Note: If xev
doesn't recognise the scroll will, this program will not recognise it either.
add a comment |
How can I configure what each button of the mouse does?
You can check if your hardware is defect by running xev
. Open a Terminal via Applications → Accessories → Terminal and type xev
. A small white window should appear. When you move your cursor in that window, the command line output will tell you what x.org things your mouse is doing:
Button 4
in this example refers to scrolling up. If you don't get any output when scrolling, it may be your mouse is just broken.
When testing this, please ignore the output that is generated by your mouse moving around.
If you know your mouse isn't broken, and xev still doesn't give you any indication of the scroll wheel - if for example the mouse works on another computer, you are experiening a bug. In this case, read the Ubuntu Wiki's article on how to report bugs and file it against X.org. Make sure to include all details in your bug report, plus how to reproduce the error.
Be absolutely certain that your mouse works before filing a bug.
How can I configure what each button of the mouse does?
You can use btnx to re-assign your mouse buttons. This will only work if they are detected properly.
The program will ask you to go through each of your buttons to configure them. Note: If xev
doesn't recognise the scroll will, this program will not recognise it either.
add a comment |
How can I configure what each button of the mouse does?
You can check if your hardware is defect by running xev
. Open a Terminal via Applications → Accessories → Terminal and type xev
. A small white window should appear. When you move your cursor in that window, the command line output will tell you what x.org things your mouse is doing:
Button 4
in this example refers to scrolling up. If you don't get any output when scrolling, it may be your mouse is just broken.
When testing this, please ignore the output that is generated by your mouse moving around.
If you know your mouse isn't broken, and xev still doesn't give you any indication of the scroll wheel - if for example the mouse works on another computer, you are experiening a bug. In this case, read the Ubuntu Wiki's article on how to report bugs and file it against X.org. Make sure to include all details in your bug report, plus how to reproduce the error.
Be absolutely certain that your mouse works before filing a bug.
How can I configure what each button of the mouse does?
You can use btnx to re-assign your mouse buttons. This will only work if they are detected properly.
The program will ask you to go through each of your buttons to configure them. Note: If xev
doesn't recognise the scroll will, this program will not recognise it either.
How can I configure what each button of the mouse does?
You can check if your hardware is defect by running xev
. Open a Terminal via Applications → Accessories → Terminal and type xev
. A small white window should appear. When you move your cursor in that window, the command line output will tell you what x.org things your mouse is doing:
Button 4
in this example refers to scrolling up. If you don't get any output when scrolling, it may be your mouse is just broken.
When testing this, please ignore the output that is generated by your mouse moving around.
If you know your mouse isn't broken, and xev still doesn't give you any indication of the scroll wheel - if for example the mouse works on another computer, you are experiening a bug. In this case, read the Ubuntu Wiki's article on how to report bugs and file it against X.org. Make sure to include all details in your bug report, plus how to reproduce the error.
Be absolutely certain that your mouse works before filing a bug.
How can I configure what each button of the mouse does?
You can use btnx to re-assign your mouse buttons. This will only work if they are detected properly.
The program will ask you to go through each of your buttons to configure them. Note: If xev
doesn't recognise the scroll will, this program will not recognise it either.
edited Mar 13 '17 at 9:32
Zanna
51.2k13139242
51.2k13139242
answered Dec 14 '10 at 20:52
Stefano Palazzo♦Stefano Palazzo
63.9k33183216
63.9k33183216
add a comment |
add a comment |
I was using a Logitech M510 wireless bluetooth mouse and was experiencing this issue with Ubuntu 18.04. I noticed that xev was not detecting any events for the scroll. To solve my issue, I turned off the mouse and then turned it back on and it worked.
add a comment |
I was using a Logitech M510 wireless bluetooth mouse and was experiencing this issue with Ubuntu 18.04. I noticed that xev was not detecting any events for the scroll. To solve my issue, I turned off the mouse and then turned it back on and it worked.
add a comment |
I was using a Logitech M510 wireless bluetooth mouse and was experiencing this issue with Ubuntu 18.04. I noticed that xev was not detecting any events for the scroll. To solve my issue, I turned off the mouse and then turned it back on and it worked.
I was using a Logitech M510 wireless bluetooth mouse and was experiencing this issue with Ubuntu 18.04. I noticed that xev was not detecting any events for the scroll. To solve my issue, I turned off the mouse and then turned it back on and it worked.
answered Oct 17 '18 at 21:58
bicolebicole
311
311
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.
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%2f17414%2fmy-mouse-wheel-has-stopped-scrolling-up-and-down%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
I got the same issue. It worked for sometime and suddenly stopped working. The below fix did it for me. stackoverflow.com/questions/41774260/…
– Venkat
Nov 17 '17 at 4:02
@Venkat - your issue refers to something completely different: Linux-on-Windows vs Ubuntu's desktop
– scruss
Mar 23 at 10:33