(已解決)雷柏v500在Ubuntu系統下鍵位映射錯誤

問題

想買個機械鍵盤碼代碼,沒有留意就入手了這個便宜的機械鍵盤.
1. 手感還可以
2. ubuntu下ctrl和alt映射到了shift鍵位,很傷

解決

一共解決了兩次才徹底解決了這個問題
可能大家能看到一些博客傳送門
但是要注意到這個是v7的 v7的 v7的!!!


最後是通過重新寫入驅動解決的^_^
驅動是網上找的github地址

步驟

  1. 下載驅動github地址
  2. 解壓
  3. cd到解壓的文件夾
  4. 執行make
  5. 執行make install
  6. 執行sudo sh install-rapoo-keyboard-driver.sh

注意!!!

可能有的小夥伴會和我一樣出現每次開機都需要重新運行一遍這個程序纔可以正常使用鍵盤
後來我是通過把這個腳本添加到開機啓動項,解決了這個問題

添加開機啓動項

  1. sudo vim /etc/rc.local
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
/home/qiusun/文檔/rapoo/install.sh
exit 0
  1. 在exit 0 的上面添加這個文件的路徑(我是把文件夾名和文件名改了下…其實就是那個.sh文件^_^)
發佈了54 篇原創文章 · 獲贊 8 · 訪問量 1萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章