afaik, same thing
you can also use root explorer and removed it that way
i think not, uninstall is diferent of just delete
afaik, same thing
you can also use root explorer and removed it that way
Need some quick help here with ADB..
I want to change my boot animation. BUT...I want to save the one that is already on my phone first...Just in case....
How do I do this?
I have CM-5.0.8-DS currently installed
Thanks in advance
adb shell //only when using adb
$ su
# cp /sdcard/bootanimation.zip /data/local/
# reboot
"adb push app /system/sd/app
adb push app-private /system/sd/app-private"
or simply
"adb install <path to file> - Example: adb install c:/apps/apps2sd.apk"
I always get the error: "cant find <whatever apk> to install"
No matter which directory i have it, i get that message.
Note:
So it's as simple as adding the path to /system/app when using the ADB INSTALL command and it will install it to system.
Cool, thanks.
Will I need to do anything special to remount r/w or anything like that? Still a noob with adb.
Thats about it fella
You don't need to make system rw or anything, adb forces it's through basically.
Awesome. Have htc ime mod on my mt3g, but I suspect its running slower because it's installed to /data and not to /system.
Just try and test fella, tis only way to be sure whats gonna be best for you![]()
if [ -f /dev/block/vold/179:2 ];
then
#somecode ;
fi
chmod 755 $scriptname
sh -x ./$scriptname
Maybe some commands on how to navigate the phone. I'm a DOS guy and the commands are similar
"dir" is "ls" for when you want a list of files and sub-directories in the current directory
"cd\" is is just "cd " (cd[space]) for changing the directory
returning to the previous directory is "cd .."
"del" is "rm" for deleting files (caution).
That's all I can think of right now.
adb pull /system/sd/app app
adb pull /system/sd/app-private app-private
adb push app /system/sd/app
adb push app-private /system/sd/app-private
adb shell rm -r /system/sd/app
adb shell rm -r /system/sd/app-private
$ su
# cd /data
# wget http://64.105.21.209/bin/lib/droid/sdsplit
# chmod 555 sdsplit
# /data/sdsplit -fs *size* [I](add -nc to the end for JFv1.5ADP)[/I]
adb shell mount /sdcard
adb shell rm /sdcard/update.zip
adb push *filename* /sdcard/update.zip
fastboot erase boot
fastboot erase recovery
fastboot flash system system.img
fastboot flash boot boot.img
fastboot flash userdata data.img
fastboot flash recovery recovery.img
fastboot reboot