android - Device not getting detected in DDMS in Ubuntu 12.04 - 32bit -


i using ubuntu 12.04 32bit. have micromax ninja a87 android phone running gb 2.3.5. problem phone not detected. when try on windows 7 pc, detected.

here steps followed still no lucks.

$ lsusb output: bus 002 device 006: id 1c9e:9e08 omega technology 

i created 51-android.rules file , have contents:

subsystem=="usb", attr{idvendor}=="1c9e", mode="0666", group="plugdev" subsystem=="usb", attr{idvendor}=="0bb4", mode="0666", group="plugdev" 

alternatively tried link - http://forum.xda-developers.com/showthread.php?t=1475740

done chmod a+r on 51-android.rules

restarted udev , restarted pc. done kill-server & start-server still when "adb devices" -- doesn't detect phone.

here more info: 1)usb debugging enable in phone. 2)whenever connect phone pc, shows popup in pc("usbmodem mass storage has been connected").

while checking vendorid , productid in windows(phone detected windows system), shows 1c9e:9e18. mentioned, in ubuntu shows 1c9e:9e08. tried switch same vendorid/productid in ubuntu i.e 1c9e:9e18. created rule in /etc/usb_modeswitch.d/1c9e:9e08 , put below contents in file. code:

defaultvendor=0x1c9e defaultproduct=0x9e08  targetvendor=0x1c9e targetproduct=0x9e18  sierramode=1 nodriverloading=1 

add below code file /lib/udev/rules.d/40-usb_modeswitch.rules

attr{idvendor}="1c9e", attr{idproduct}="9e08", run+="usb_modeswitch '%b/%k'" 

once done run :

sudo usb_modeswitch -v 0x1c9e -p 0x9e08 -s -r -w 

now adb recognise phone.

for further reference can go through below link: http://forum.xda-developers.com/showthread.php?t=1968465


Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -