usb debugging with micromax unit a092 in ubuntu 12.04

让人想犯罪 __ 提交于 2020-01-30 12:21:16

问题


I am using Micromax Unite A092, for USB debugging in Ubuntu 12.04. I enabled "USB debugging" from developer options and "connected as a media device".
But ./adb devices does not show it.

I tried
SUBSYSTEMS=="usb", ATTRS{idVendor}=="1c9e", ATTRS{idProduct}=="7f10", MODE="0666" writing in /etc/udev/rules.d/51-android.rules but no luck.

The output of lsusb is-

Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 036: ID 1c9e:7f10 OMEGA TECHNOLOGY 
Bus 001 Device 029: ID 0cf3:3004 Atheros Communications, Inc. 
Bus 001 Device 004: ID 0bda:0129 Realtek Semiconductor Corp. 
Bus 002 Device 003: ID 04f2:b3bb Chicony Electronics Co., Ltd

could you please guide me. This time I am following connect micromax A70 android phone to eclipse


回答1:


You need to add your USB Vendor ID to ~/.android/adb_usb.ini:

echo "0x1c9e" >> ~/.android/adb_usb.ini

and restart adb:

adb kill-server
adb devices


来源:https://stackoverflow.com/questions/27688417/usb-debugging-with-micromax-unit-a092-in-ubuntu-12-04

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!