鼠标与接收器关联,并被 Solaar 小程序检测到并看到,但光标不动。我应该尝试修复什么?
这款 M510 鼠标可以与 Ubuntu 12.10 和 Windows 配合使用。该机器是预装了 Ubuntu 16.04 Xenial 的 Dell XPS 13 笔记本电脑。Synaptics 触摸板也运行良好。
消息
[123638.604824] usb 1-1: new full-speed USB device number 10 using xhci_hcd
[123638.751916] usb 1-1: New USB device found, idVendor=046d, idProduct=c52b
[123638.751922] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[123638.751926] usb 1-1: Product: USB Receiver
[123638.751930] usb 1-1: Manufacturer: Logitech
[123638.759981] logitech-djreceiver 0003:046D:C52B.0009: hiddev0,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-1/input2
[123638.886815] input: Logitech M510 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0009/0003:046D:1025.000A/input/input21
[123638.887421] logitech-hidpp-device 0003:046D:1025.000A: input,hidraw1: USB HID v1.11 Mouse [Logitech M510] on usb-0000:00:14.0-1:1
/var/log/Xorg.0.log
[123639.458] (II) config/udev: Adding input device Logitech M510 (/dev/input/mouse1)
[123639.458] (II) No input driver specified, ignoring this device.
[123639.458] (II) This device may have been added with another device file.
[123639.497] (II) config/udev: Adding input device Logitech M510 (/dev/input/event7)
[123639.497] (**) Logitech M510: Applying InputClass "evdev pointer catchall"
[123639.497] (**) Logitech M510: Applying InputClass "natural scrolling for mouse wheel"
[123639.497] (II) LoadModule: "mouse"
[123639.497] (WW) Warning, couldn't open module mouse
[123639.497] (II) UnloadModule: "mouse"
[123639.497] (II) Unloading mouse
[123639.497] (EE) Failed to load module "mouse" (module does not exist, 0)
[123639.497] (EE) No input driver matching `mouse'
此外,apt 说:E:无法找到软件包 xserver-xorg-input-mouse。它似乎是 wily 的最后一个可用软件包。
答案1
罪魁祸首是文件 /usr/share/X11/xorg.conf.d/20-natural-scrolling.conf,我添加它是为了解决笔记本电脑触摸板滚动方向反转的问题。它有以下内容:
Section "InputClass"
Identifier "natural scrolling for mouse wheel"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "mouse"
Option "Device" "/dev/input/mice"
Option "Protocol" "Auto"
Option "ZAxisMapping" "5 4"
EndSection
不过,它似乎对滚动没有任何影响。编辑:下面的文件似乎对滚动没有任何影响,但会破坏鼠标功能。我已将其删除,但不再有滚动方向错误的问题。