BH_MAN
Android Expert
Due to the Over whelming Question Regarding how-to do things in Android system regarding ADB, I've Decided to make a thread regarding this Issue..
If you Have to ask a Question, be very clear so we can Keep this thread Clean.. Wiki Located here > ADB - Android Wiki
To Fix ADB in Linux, Visit this Thread > http://androidforums.com/all-things-root-behold-2/60949-adb-linux-replacement-fix-file.html
To start us Off.....
If you would Like to Pull a File / App. First we would do this....
Next, If still in Command Prompt.
adb pull /system/app/AlarmClock.apk C:\AlarmClock.apk
Now we should have the alram clock app in our Root Directory in C:\
Now to Push the alarm clock app after we made changes to it...
adb push C:\AlarmClock.apk /system/app/AlarmClock.apk
Now we have Pull & Push a File into the system/app Directory.
Now.... Lets say we want to remove an App from the /system/app Directory ( Be careful when doing this, Can cause phone Not to Boot... )
In this example I'll be Removing the AlarmClock.apk from adb shell..
Through ADB
A2SD Commands
If using any A2SD you would run these Commands as well to locate, Remove, Pull or Push.
Pull apps off phone onto computer
Thanks,
~BH_MAN
Thanks Paul
HAHA LMAO we posted the same video, I'll delete mine!
If you Have to ask a Question, be very clear so we can Keep this thread Clean.. Wiki Located here > ADB - Android Wiki
To Fix ADB in Linux, Visit this Thread > http://androidforums.com/all-things-root-behold-2/60949-adb-linux-replacement-fix-file.html
To start us Off.....
If you would Like to Pull a File / App. First we would do this....
Now we should have a Huge amount of App's in front of us, now we locate the name of the App we wish to pull Once we Find it, we do the Following.. ( In this example I'll be Pulling the alarmclock.apk )adb shell
cd /system/app
ls -l
Next, If still in Command Prompt.
running exit will drop you back into Command prompt shell, From there we Running the Following Commands in Blue...exit
adb pull /system/app/AlarmClock.apk C:\AlarmClock.apk
Now we should have the alram clock app in our Root Directory in C:\
Now to Push the alarm clock app after we made changes to it...
adb push C:\AlarmClock.apk /system/app/AlarmClock.apk
Now we have Pull & Push a File into the system/app Directory.
Now.... Lets say we want to remove an App from the /system/app Directory ( Be careful when doing this, Can cause phone Not to Boot... )
In this example I'll be Removing the AlarmClock.apk from adb shell..
Now, if the System uses .odex file, do the same regarding those file's as well.... The Command would look like this for .odex removal...adb shell
cd /system/app
rm -r AlarmClock.apk
More Example..rm -r AlarmClock.odex
Through ADB
A2SD Commands
If using any A2SD you would run these Commands as well to locate, Remove, Pull or Push.
Pull apps off phone onto computer
Push apps back to phone from the computeradb pull /system/sd/app app
adb pull /system/sd/app-private app-private
Delete existing apps on SDadb push app /system/sd/app
adb push app-private /system/sd/app-private
Please Post your How-to,adb shell rm -r /system/sd/app
adb shell rm -r /system/sd/app-private
Thanks,
~BH_MAN
Thanks Paul

HAHA LMAO we posted the same video, I'll delete mine!