问题
想买个机械键盘码代码,没有留意就入手了这个便宜的机械键盘.
1. 手感还可以
2. ubuntu下ctrl和alt映射到了shift键位,很伤
解决
一共解决了两次才彻底解决了这个问题
可能大家能看到一些博客传送门
但是要注意到这个是v7的 v7的 v7的!!!
最后是通过重新写入驱动解决的^_^
驱动是网上找的github地址
步骤
- 下载驱动github地址
- 解压
- cd到解压的文件夹
- 执行
make
- 执行
make install
- 执行
sudo sh install-rapoo-keyboard-driver.sh
注意!!!
可能有的小伙伴会和我一样出现每次开机都需要重新运行一遍这个程序才可以正常使用键盘
后来我是通过把这个脚本添加到开机启动项,解决了这个问题
添加开机启动项
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
- 在exit 0 的上面添加这个文件的路径(我是把文件夹名和文件名改了下…其实就是那个.sh文件^_^)