0

Just installed Lubuntu 14.10 on Toshiba Satellite A305-S6872. Cursor is immediately in middle of screen and will not move. Is there something I can do from the terminal that will fix the issue? The other, similar questions on this site seem to be unanswered. Hopefully someone can come forward with some useful info. Thanks in advance!

Wilf
  • 30,194
  • 17
  • 108
  • 164

1 Answers1

2

Ok, so I followed the solution ref by @Smile4ever above. The main issue others might run into is creating the file in /etc/modprobe.d due to permissions. In terminal:

gksudo nautilus

This opens terminal as admin so be careful.

Next:

gksudo gedit /etc/modprobe.d/psmouse.conf

In gedit type: options psmouse proto=imps

Save and exit.

In terminal:

sudo modprobe -r psmouse
sudo modprobe psmouse proto=imps

the end, roll credits

Richard
  • 8,502
  • 11
  • 47
  • 72
  • I don't see the need for the first command -- gksudo nautilus might merely open nautilus with root permissions, and it's just asking for trouble. I recommend removing that part of your answer as it's not necessary for the rest of your procedure. – Tommy Trussell Feb 13 '15 at 20:24