Ubuntu 下友基数位板驱动和配置(2)

////////////////////////////////
Section "ServerLayout"
    ............
EndSection
Section "InputDevice"
        Identifier      "UGEE-1000L"
        Driver          "wizardpen"
        Option          "Protocol" "auto"
        Option          "SendCoreEvents" "true"
        Option          "Device" "/dev/input/by-id/usb-UC-LOGIC_ugee-1000L-event-mouse"
        Option          "TopX"          "0"
        Option          "TopY"          "200"
        Option          "BottomX"      "2000"
        Option          "BottomY"      "2000"
EndSection
//////////////////////////////////

Identifier      "UGEE-1000L"        是我们的数位板的名字

/dev/input/by-id/usb-UC-LOGIC_ugee-1000L-event-mouse 这是什么来的呢?

通过这个指令 ls /dev/input/by-id/

就会显示一些输入设备的信息.我需要找的是有 *-event-mouse  (不包含if01.if02等等)

最后在 Section "ServerLayout" 里添加一条语句

Section "ServerLayout"
      .......
      InputDevice    "UGEE-1000L"
EndSection

保存退出,最后把文件另存为

sudo cp /home/你的用户名/xorg.conf.new /etc/X11/xorg.conf

重启就可以使用友基1000L了.但是有点不足的地方是.不插上数位板的话.Xorg配置会找不到 "/dev/input/by-id/usb-UC-LOGIC_ugee-1000L-event-mouse"

就进入不了图形界面了..

...暂时告一段落..

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/19553.html