Joined
·
954 Posts
ADB is a tool you can use to pull diagnostic information to your device or to perform other debugging commands. XDA developers has good documentation on how to get it to work. Windows:http://forum.xda-developers.com/showthread.php?t=532719Drivers only: http://www.multiupload.com/WV7RGN4JZ8You can also use Droid Explorer for an automatic install and a Windows explorer-like interfaceMac: http://forum.xda-developers.com/showthread.php?t=502010Linux: http://forum.xda-developers.com/showthread.php?t=537508Things you need:Android SDK - DownloadPCmale mini-USB to male USB Cable that comes in the box--------------------------------------------------------------------------Common commands for adbCheck if device is connected properly
Diagnostic Android log
Linux Kernel Messages
Install a specific APK file
Pull (grab) a file from your device to your current working directory on your PC
Push (put) a file from your current working directory to your device
Quick reboot
Look at the tasks running on your device
Check memory usage
Check storage usage
Code:
adb devices
Code:
adb logcat
Code:
adb shellcat /proc/kmsg
Code:
adb install filename_of_the_app.apk
Code:
adb pull filename_or_directory_name_in_device .
Code:
adb push filename_or_directory_name_of_file_to_push destination_on_device
Code:
adb shell reboot
Code:
adb shell top
Code:
adb shell free
Code:
adb shell busybox df -h