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-Fixin-Mad-Catz-MMO-7-double-click-issue-DIY

相關內容