问题描述
我正在使用 Micromax Unite A092,在 Ubuntu 12.04 中进行 USB 调试.我从开发人员选项中启用了USB 调试"并作为媒体设备连接".
但是 ./adb devices
没有显示出来.
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.
我试过了SUBSYSTEMS=="usb", ATTRS{idVendor}=="1c9e", ATTRS{idProduct}=="7f10", MODE="0666"
写入 /etc/udev/rules.d/51-android.rules
但没有运气.
I triedSUBSYSTEMS=="usb", ATTRS{idVendor}=="1c9e", ATTRS{idProduct}=="7f10", MODE="0666"
writing in /etc/udev/rules.d/51-android.rules
but no luck.
lsusb
的输出是-
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
你能指导我吗?这次我关注了将 micromax A70 安卓手机连接到 eclipse
could you please guide me.This time I am followingconnect micromax A70 android phone to eclipse
推荐答案
您需要将您的 USB Vendor ID 添加到 ~/.android/adb_usb.ini
:
You need to add your USB Vendor ID to ~/.android/adb_usb.ini
:
echo "0x1c9e" >> ~/.android/adb_usb.ini
并重启adb
:
adb kill-server
adb devices
这篇关于在 ubuntu 12.04 中使用 micromax 单元 a092 进行 USB 调试的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!