Erratic Mouse Behavior
up vote
2
down vote
favorite
I'm having an issue on my desktop computer where my mouse pointer sticks to the edges of my screen, typically the top right corner, and any attempt to move it away will cause it to snap back to that position like a rubber band. Because of this, I am unable to use my mouse.
I was able to resolve this issue by blacklisting the psmouse
module in /etc/modprobe.d
, as recommended by Dell (and on the Ubuntu forums a few years ago) here.
However, blacklisting the psmouse module causes resume from suspend issues. Specifically, after suspend, my mouse will move very slowly and have a stutter/lag to it, and my audio will stutter. When I launch the psmouse module, both the mouse and audio issue go away, but I am then unable to use my mouse again.
I am currently running a fresh installation of Pop!_OS 18.10, but have confirmed the issue exists on latest Ubuntu LTS and 18.10
My system is using Nvidia 410 drivers and an i7-4770K. The issues persist regardless of the connected peripherals. I have tried different mice, keyboards, etc.
Does anyone have any suggestions for resolving the mouse issue without blacklisting or removing psmouse via modprobe?
drivers 18.10 mouse-pointer
add a comment |
up vote
2
down vote
favorite
I'm having an issue on my desktop computer where my mouse pointer sticks to the edges of my screen, typically the top right corner, and any attempt to move it away will cause it to snap back to that position like a rubber band. Because of this, I am unable to use my mouse.
I was able to resolve this issue by blacklisting the psmouse
module in /etc/modprobe.d
, as recommended by Dell (and on the Ubuntu forums a few years ago) here.
However, blacklisting the psmouse module causes resume from suspend issues. Specifically, after suspend, my mouse will move very slowly and have a stutter/lag to it, and my audio will stutter. When I launch the psmouse module, both the mouse and audio issue go away, but I am then unable to use my mouse again.
I am currently running a fresh installation of Pop!_OS 18.10, but have confirmed the issue exists on latest Ubuntu LTS and 18.10
My system is using Nvidia 410 drivers and an i7-4770K. The issues persist regardless of the connected peripherals. I have tried different mice, keyboards, etc.
Does anyone have any suggestions for resolving the mouse issue without blacklisting or removing psmouse via modprobe?
drivers 18.10 mouse-pointer
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I'm having an issue on my desktop computer where my mouse pointer sticks to the edges of my screen, typically the top right corner, and any attempt to move it away will cause it to snap back to that position like a rubber band. Because of this, I am unable to use my mouse.
I was able to resolve this issue by blacklisting the psmouse
module in /etc/modprobe.d
, as recommended by Dell (and on the Ubuntu forums a few years ago) here.
However, blacklisting the psmouse module causes resume from suspend issues. Specifically, after suspend, my mouse will move very slowly and have a stutter/lag to it, and my audio will stutter. When I launch the psmouse module, both the mouse and audio issue go away, but I am then unable to use my mouse again.
I am currently running a fresh installation of Pop!_OS 18.10, but have confirmed the issue exists on latest Ubuntu LTS and 18.10
My system is using Nvidia 410 drivers and an i7-4770K. The issues persist regardless of the connected peripherals. I have tried different mice, keyboards, etc.
Does anyone have any suggestions for resolving the mouse issue without blacklisting or removing psmouse via modprobe?
drivers 18.10 mouse-pointer
I'm having an issue on my desktop computer where my mouse pointer sticks to the edges of my screen, typically the top right corner, and any attempt to move it away will cause it to snap back to that position like a rubber band. Because of this, I am unable to use my mouse.
I was able to resolve this issue by blacklisting the psmouse
module in /etc/modprobe.d
, as recommended by Dell (and on the Ubuntu forums a few years ago) here.
However, blacklisting the psmouse module causes resume from suspend issues. Specifically, after suspend, my mouse will move very slowly and have a stutter/lag to it, and my audio will stutter. When I launch the psmouse module, both the mouse and audio issue go away, but I am then unable to use my mouse again.
I am currently running a fresh installation of Pop!_OS 18.10, but have confirmed the issue exists on latest Ubuntu LTS and 18.10
My system is using Nvidia 410 drivers and an i7-4770K. The issues persist regardless of the connected peripherals. I have tried different mice, keyboards, etc.
Does anyone have any suggestions for resolving the mouse issue without blacklisting or removing psmouse via modprobe?
drivers 18.10 mouse-pointer
drivers 18.10 mouse-pointer
edited Nov 29 at 2:47
zx485
1,45231114
1,45231114
asked Nov 28 at 19:31
Alex
213
213
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
I figured it out. I allowed the mouse to exhibit it's odd behavior and was able to run xinput while it was doing so. It revealed an entry called "PS/2 Generic Mouse". Disabling this generic device allowed my mouse to work normally without having to blacklist psmouse. You can disable it with the command
xinput disable id#
If you want to disable a xinput pointer entry permanently, you can do so by creating "xorg.conf" in /etc/X11 and entering the following:
Section "InputClass"
Identifier "disable broken device"
MatchIsPointer "on"
MatchProduct "PS/2 Generic Mouse"
Option "Ignore" "on"
EndSection
Credit goes to this Stack Exchange Unix & Linux post
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
I figured it out. I allowed the mouse to exhibit it's odd behavior and was able to run xinput while it was doing so. It revealed an entry called "PS/2 Generic Mouse". Disabling this generic device allowed my mouse to work normally without having to blacklist psmouse. You can disable it with the command
xinput disable id#
If you want to disable a xinput pointer entry permanently, you can do so by creating "xorg.conf" in /etc/X11 and entering the following:
Section "InputClass"
Identifier "disable broken device"
MatchIsPointer "on"
MatchProduct "PS/2 Generic Mouse"
Option "Ignore" "on"
EndSection
Credit goes to this Stack Exchange Unix & Linux post
add a comment |
up vote
1
down vote
I figured it out. I allowed the mouse to exhibit it's odd behavior and was able to run xinput while it was doing so. It revealed an entry called "PS/2 Generic Mouse". Disabling this generic device allowed my mouse to work normally without having to blacklist psmouse. You can disable it with the command
xinput disable id#
If you want to disable a xinput pointer entry permanently, you can do so by creating "xorg.conf" in /etc/X11 and entering the following:
Section "InputClass"
Identifier "disable broken device"
MatchIsPointer "on"
MatchProduct "PS/2 Generic Mouse"
Option "Ignore" "on"
EndSection
Credit goes to this Stack Exchange Unix & Linux post
add a comment |
up vote
1
down vote
up vote
1
down vote
I figured it out. I allowed the mouse to exhibit it's odd behavior and was able to run xinput while it was doing so. It revealed an entry called "PS/2 Generic Mouse". Disabling this generic device allowed my mouse to work normally without having to blacklist psmouse. You can disable it with the command
xinput disable id#
If you want to disable a xinput pointer entry permanently, you can do so by creating "xorg.conf" in /etc/X11 and entering the following:
Section "InputClass"
Identifier "disable broken device"
MatchIsPointer "on"
MatchProduct "PS/2 Generic Mouse"
Option "Ignore" "on"
EndSection
Credit goes to this Stack Exchange Unix & Linux post
I figured it out. I allowed the mouse to exhibit it's odd behavior and was able to run xinput while it was doing so. It revealed an entry called "PS/2 Generic Mouse". Disabling this generic device allowed my mouse to work normally without having to blacklist psmouse. You can disable it with the command
xinput disable id#
If you want to disable a xinput pointer entry permanently, you can do so by creating "xorg.conf" in /etc/X11 and entering the following:
Section "InputClass"
Identifier "disable broken device"
MatchIsPointer "on"
MatchProduct "PS/2 Generic Mouse"
Option "Ignore" "on"
EndSection
Credit goes to this Stack Exchange Unix & Linux post
edited Nov 29 at 13:33
answered Nov 29 at 5:10
Alex
213
213
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%2f1096909%2ferratic-mouse-behavior%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