(1)首先使用lsusb命令,列出所有usb设备的VID、PID号。
liuling@liuling-PC:~$ lsusb Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 014: ID 2b0e:1768 Bus 001 Device 004: ID 0461:0010 Primax Electronics, Ltd HP Keyboard Bus 001 Device 003: ID 03f0:094a Hewlett-Packard Bus 001 Device 009: ID 046d:c053 Logitech, Inc. Laser Mouse Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub liuling@liuling-PC:~$
其中Bus 001 Device 014: ID 2b0e:1768为我插入的手机设备,可以看出VID为2b0e,PID为1768。
(2)在用户的 home 目录下,寻找 .android 目录,如果没有就创建。在 .android 目录下新建一个文件,叫adb_usb.ini, 记住,后缀是 “ini” 哦;添加前面获得的 VID 到 adb_usb.ini 中,如 0xAAAA,注意要加上0x,因为是16进制的。
(3)在 shell 中 分别输入 adb kill-server, adb start-server, adb devices;若能看到 devices 列出,那么就成功了。