LINUX[CENTOS 7]中开启thinkpad中键

一般来讲thinkpad安装完linux之后中键是默认不开启的,但是驱动已经安装好,所以只需要写一个配置文件就好:

首先定位到目录:

/etc/X11/xorg.conf.d

新建一个: 20-thinkpad.conf 文件

输入以下内容:

Section "InputClass"
    Identifier  "Trackpoint Wheel Emulation"
    Driver "evdev"
    MatchProduct    "TPPS/2 IBM TrackPoint"
    MatchDevicePath "/dev/input/event*"
    Option      "EmulateWheel"      "true"
    Option      "EmulateWheelButton"    "2"
    Option      "Emulate3Buttons"   "false"
    Option      "XAxisMapping"      "6 7"
    Option      "YAxisMapping"      "4 5"
EndSection

注意事项:
1.文件名字一定要对,不能是21-thinkpad.conf 或者19-thinkpad.conf
2.文件内容一定要对,最好不要手写,复制以上内容最好

以上两个错了一个都会导致无法进入图形化界面。

如果输错了怎么办?

在passphrase 阶段按F1,进入命令行模式,输入passphrase ,在加载过程中狂按ctrl+f2,进入命令行模式,输入管理员帐号。

登陆成功之后,找到/etc/X11/xorg.conf.d/xx-thinpad.conf 文件,将他修改正确,或者删除文件。

reboot now;

你可能感兴趣的:(LINUX[CENTOS 7]中开启thinkpad中键)