If you familular with android and search stuff then you may have coem across the word adb,well this is another may to put stuff onto your phone,especially if you cant install them from android market.

Got most of this stuff from another site,props to t0ast3d

1. Turn on ADB

Go to Menu > Settings > Applications > Development > USB Debugging


2. Running ADB

To run ADB, downolad the newest Android SDK and place it in C: and rename it AndroidSDK

SDK Link:

Windows Hidden Content Mac OS X (intel) Hidden Content Linux (i386) Hidden Content

Open up command prompt and type
cd c:\AndroidSDK/tools

You are now in


3. Basic ADB commands

ADB push (sends files to your phone) -- adb push c:\example.apk /sdcard/example.apk

ADB pull (Receives files from your phone) -- adb pull /system/app/example.apk c:\example.apk

ADB install (installs application) -- adb install c:\example.apk

adb shell (Begins shell connection with phone)

adb reboot (reboots phone)

adb reboot recovery (reboots phone into recovery)

adb reboot bootloader (reboots the phone into bootloader/the white screen)

adb remount (remounts the system)


4. Commands to run while in ADB Shell

cd (changes directories) -- cd /system/app

ls (lists all files in the directory) -- cd /system/app

rm (removes files) -- rm /system/app/example.apk

cp (copies files) similar to cat -- cp /system/app/example.apk /sdcard/example.apk

cat (copies files) -- cat /system/app/example.apk > /sdcard/example.apk

exit (exits shell) -- exit