Android: Difference between revisions

From Halfface
Jump to navigation Jump to search
No edit summary
Line 7: Line 7:
==root==
==root==
  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==
access.
  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=="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

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.

 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=="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