- Jan 5, 2010
- 3,567
- 172
- 0
You need to mount the /system/ directory in order to remove sprint apps. You can't do it on terminal emulator, you have to do it from the computer.
cd android-sdk-mac_86/tools/
./adb shell
mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
cd /system/app/
rm WHATEVER.apk
If you had a custom rom, you would do this differently
cd android-sdk-mac_86/tools
./adb remount
./adb shell
cd /system/app
rm WHATEVER.apk
You can't do superuser functions, you need the superuser permissions app installed if you're going to do things from the terminal emulator.
To install a custom 2.1 ROM, it doesn't matter what computer platform you are on... you don't even need a computer to do it. Just take the zip file of the ROM, place it in the main directory of your sd card, boot into recovery (either using computer ./adb reboot recovery, or by powering off the phone, holding the home button as you power the phone back on). follow the procedures on performing a nandroid backup, wiping the data/system restore and dalvik (ignore errors), then flash .zip from sd. You can do this from the phone by downloading the file to the sd card from whatever site you get the rom from, then using a file manager to relocate the file to the main directory of the sd card. The ROM has to be there, otherwise the recovery cannot find it and won't be able to flash the file.
cd android-sdk-mac_86/tools/
./adb shell
mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
cd /system/app/
rm WHATEVER.apk
If you had a custom rom, you would do this differently
cd android-sdk-mac_86/tools
./adb remount
./adb shell
cd /system/app
rm WHATEVER.apk
You can't do superuser functions, you need the superuser permissions app installed if you're going to do things from the terminal emulator.
To install a custom 2.1 ROM, it doesn't matter what computer platform you are on... you don't even need a computer to do it. Just take the zip file of the ROM, place it in the main directory of your sd card, boot into recovery (either using computer ./adb reboot recovery, or by powering off the phone, holding the home button as you power the phone back on). follow the procedures on performing a nandroid backup, wiping the data/system restore and dalvik (ignore errors), then flash .zip from sd. You can do this from the phone by downloading the file to the sd card from whatever site you get the rom from, then using a file manager to relocate the file to the main directory of the sd card. The ROM has to be there, otherwise the recovery cannot find it and won't be able to flash the file.