Cyborg RAT 9 鼠标一直冻结

Cyborg RAT 9 鼠标一直冻结

我刚买了一个新的 Cyborg RAT 9 鼠标。问题是鼠标一直卡住。其实不是。我仍然可以移动光标,但无法打开/关闭任何东西。点击无法识别。只要我将 USB 插入笔记本电脑,触摸板也无法工作。只有当我再次拔下 USB 时,它才能正常工作。

我能做些什么?

谢谢!

答案1

欢迎来到 AskUbuntu。

我找到了一个可能对您有用的解决方案。

在终端上输入sudo su

接下来,通过键入以下内容创建一个新的配置文件 gedit /etc/X11/xorg.conf.d/20-cyborgrat9.conf

将此代码复制并粘贴到配置文件中。

Section "InputClass"
        Identifier "R.A.T."
        MatchProduct "R.A.T.7|R.A.T.9"
        MatchDevicePath "/dev/input/event*"
        Option "Buttons” “17"
        Option "ButtonMapping" "1 2 3 4 5 0 0 8 9 7 6 12 0 0 0 16 17"
        Option "AutoReleaseButtons" "13 14 15"
        Option "ZAxisMapping" "4 5 6 7"
EndSection

最后,重新启动计算机。

答案2

我知道这是一个老问题,但我仍然使用我的老鼠。Ubuntu 已经改变了一切。owl 的答案对于 Ubuntu 14.04/16.04 不再正确。

现在应将文件放置在:/usr/share/X11/xorg.conf.d/(ubuntu 不再使用 /etc/X11/xorg.conf.d/)

以下是我为我的鼠标保存的文件:

/usr/share/X11/xorg.conf.d/rat7mouse.conf

Section "InputClass"
    Identifier "Mouse Remap"
    MatchProduct "Saitek Cyborg R.A.T.7 Mouse"
    MatchDevicePath "/dev/input/event*"
    Option "ButtonMapping" "1 2 3 4 5 6 7 8 9 0 0 0 0 0 0"
EndSection

/usr/share/X11/xorg.conf.d/rat9mouse.conf

Section "InputClass"
    Identifier "Mouse Remap"
    MatchProduct "Saitek Cyborg R.A.T.9 Wireless Mouse"
    MatchDevicePath "/dev/input/event*"
    Option "ButtonMapping" "1 2 3 4 5 6 7 8 9 0 0 0 0 0 0"
EndSection

不要忘记重新启动电脑以使更改生效。

另一种解决方案是启用它的内核驱动程序: https://github.com/rkruk/RAT-Cyborg-Mouse-on-Linux

如果您在单击滚轮时遇到双击问题,请检查以下内容:http://www.overclockers.com/forums/showthread.php/753083-Fixing-Mad-Catz-MMO-7-double-click-issue-DIY

相关内容