Original link: http://bbs.hiapk.com/thread-4760331-1-1.html
Installing the software adb install *.apk
Reinstall the Software adb install-r *.apk
Uninstall apk software adb Uninstall *.apk
Check the run log on your phone, which can be used to check for errors adb logcat
See if your phone is connected, and how many phones are connected adb devices
A is the phone path,B is the computer path, meaning: Copy the file from the phone to the computer adb pull <A> <B>
A is the phone path,B is the computer path, meaning: Copy the file from the computer to the phone adb push <B> <A>
access to the phone's HyperTerminal Terminal adb Shell
re-mount the file system adb remount
Restart your phone adb reboot
Reboot to Recovery interface adb reboot Recovery
Restart to bootloader interface adb reboot bootloader example: Regain ROOT and downgrade method after brush official high version (partial operation)
run the adb environment adb Shell
set up Super User mode su
Mapping out Catalogs mount-o remount,rw-t yaffs2/dev/block/mtdblock3/system
exit su Exit
exit Shell ready to accept next adb command Exit
add flash_image files to the phone adb push Flash_image.zip/system/bin/flash_image
Recovery first copy to card adb push Recovery-ra-heroc-v1.6.2.img/sdcard
Enter the adb environment again adb Shell
Modify file Properties chmod 0755/system/bin/flash_image
Rebooting the system reboot
"Go" adb common commands