Android: Difference between revisions

From Halfface
Jump to navigation Jump to search
Line 8: Line 8:
  http://www.tech-exclusive.com/2010/10/17/guide-to-root-android-2-2-on-htc-desire/
  http://www.tech-exclusive.com/2010/10/17/guide-to-root-android-2-2-on-htc-desire/
==shell access==
==shell access==
access.
access. /etc/udev/rules.d/51-android.rules
  2010-10-23 12:19$ cat /etc/udev/rules.d/51-android.rules
  SUBSYSTEM=="usb" ID_VENDOR_ID=="0bb4", MODE="0666"
  SUBSYSTEM=="usb" ID_VENDOR_ID=="0bb4", MODE="0666"
  SUBSYSTEM=="usb" ID_VENDOR_ID=="18d1", MODE="0666"
  SUBSYSTEM=="usb" ID_VENDOR_ID=="18d1", MODE="0666"

Revision as of 08:21, 23 October 2010

My android device is a htc desire.

protection

installation

http://techgeeks-online.com/2010/zagg-invisible-shield-install/

root

http://www.tech-exclusive.com/2010/10/17/guide-to-root-android-2-2-on-htc-desire/

shell access

access. /etc/udev/rules.d/51-android.rules

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

start device manager

adb usb

kill device manager

adb kill-server

display devices.

adb devices

get a shell on device

adb shell

run command on device and handle output locally.

adb shell ls /system/bin | less