• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

adb problem; can't root

jbakshi

Lurker
Dear list,

I have found the adb can't communicate with my phone (spice Mi-350, actually lenevo-A60)
If I run "adblinux discover" as root it shows as following

` ` `
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
List of devices attached

` ` `

obviously at phone I have usb debugging on. I have also added the following udev rules found at ADB - iDroid Project


SUBSYSTEM=="usb" ID_VENDOR_ID=="0bb4", MODE="0666"
SUBSYSTEM=="usb" ID_VENDOR_ID=="18d1", MODE="0666"
SUBSYSTEM=="usb" ID_VENDOR_ID=="05ac", MODE="0666"

but no luck. Could anyone kindly show me the way to activate adb so that I can run superoneclick .. Or any other way to root it ....PLEASE


DEBUG within Linux
================

lsusb

``
Bus 002 Device 116: ID 2006:0c03
` `

/var/log/messages
------------------

Nov 20 15:38:56 shiva kernel: [320568.881611] usb 2-1.2: new high speed USB device number 117 using ehci_hcd
Nov 20 15:38:56 shiva kernel: [320568.975012] usb 2-1.2: New USB device found, idVendor=2006, idProduct=0c03
Nov 20 15:38:56 shiva kernel: [320568.975019] usb 2-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Nov 20 15:38:56 shiva kernel: [320568.975025] usb 2-1.2: Product: Mi-350
Nov 20 15:38:56 shiva kernel: [320568.975028] usb 2-1.2: Manufacturer: Spice
Nov 20 15:38:56 shiva kernel: [320568.975032] usb 2-1.2: SerialNumber: 0123456789ABCDEF
Nov 20 15:38:56 shiva kernel: [320568.976814] scsi116 : usb-storage 2-1.2:1.0
Nov 20 15:38:57 shiva kernel: [320569.973037] scsi 116:0:0:0: Direct-Access Spice Mi-350 0100 PQ: 0 ANSI: 2
Nov 20 15:38:57 shiva kernel: [320569.974216] sd 116:0:0:0: Attached scsi generic sg3 type 0
Nov 20 15:38:57 shiva kernel: [320569.977437] sd 116:0:0:0: [sdc] Attached SCSI removable disk

-- with best wishes
 
there are two(3) modes adb (recover) or fastboot
the device have lenovo ID or google ID
on my system (debian) /etc/udev/rules.d in file 51-android.rules i wrote

SUBSYSTEMS=="usb", ATTRS{idVendor}=="19D2", ATTRS{idProduct}=="0ff9", MODE="0666", OWNER="username" #Normal lephone
SUBSYSTEMS=="usb", ATTRS{idVendor}=="19D2", ATTRS{idProduct}=="0fff", MODE="0666", OWNER="username" #Fastboot lephone
SUBSYSTEMS=="usb", ATTRS{idVendor}=="19D2", ATTRS{idProduct}=="skip", MODE="0666", OWNER="username" #Debug & Recovery lephone

mount udev on /dev type tmpfs (rw,mode=0755)

group is usbusers
 
Dear list,

I have found the adb can't communicate with my phone (spice Mi-350, actually lenevo-A60)
If I run "adblinux discover" as root it shows as following

` ` `
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
List of devices attached

` ` `

SUBSYSTEM=="usb" ID_VENDOR_ID=="0bb4", MODE="0666"
SUBSYSTEM=="usb" ID_VENDOR_ID=="18d1", MODE="0666"
SUBSYSTEM=="usb" ID_VENDOR_ID=="05ac", MODE="0666"

lsusb

Bus 002 Device 116: ID 2006:0c03

where is your
SUBSYSTEM=="usb" ID_VENDOR_ID=="2006", MODE="0666"
???

/var/log/messages
------------------
Nov 20 15:38:56 shiva kernel: [320568.975032] usb 2-1.2: SerialNumber:0123456789ABCDEF
this is the number of the adb-device
try again
 
Back
Top Bottom