Iced Glacier boot animation - myTouch 4G Q&A, Help & Troubleshooting

Forgive me if this has been answered before.. Anyone know how to push a boot animation through terminal on Iced Glacier rom? I can get it done through adb, but was curious as to how I can do it without a pc...
Sent from my HTC Glacier using XDA App

as long as you have the bootanimation.zip in the floor of the sd card, you can do this in the terminal.
su
cp /sdcard/bootanimation.zip /data/local/
reboot

You can also just replace the file with root explorer under system/customize/resource

Neither method would work... I do have the boot animation saved in my sd card's root, and even in adb I have to push it to /system/customize/resource... And if it makes any difference, the original boot animation is named TMUS_bootanimation.zip and also I am using ghost commander as a root explorer...
Sent from my HTC Glacier using XDA App

Sorry, yeah, you need to rename the file to TMUS_bootanimation.zip to replace the current

ronin178 said:
Sorry, yeah, you need to rename the file to TMUS_bootanimation.zip to replace the current
Click to expand...
Click to collapse
I did that... Did not work... Also tried replacing the lines in the other guys post with the right location/ name... The result of both is a second file in my resource folder and it gives it (2) after the filename... No big deal, I will continue using adb...
Sent from my HTC Glacier using XDA App

iamiced said:
as long as you have the bootanimation.zip in the floor of the sd card, you can do this in the terminal.
su
cp /sdcard/bootanimation.zip /data/local/
reboot
Click to expand...
Click to collapse
that worked..after giving it super user privilege. My keyboard dropped out of sight.. i exited , than re-entered Terminal emulator repeating the steps one by one and it worked! Thank you! ive been up and down the forum even using ROM manger but stuck with there boot animations instead of the ones i wanted.
*Thanks Given!

I had this problem before, but I was using ES File Explorer. What I ended up doing was backing up the old bootanimation.zip file and then deleting it with the RM command under SU. After I did that I could copy the new animation in just fine.

Related

Clockwork recovery no computer method?

Is there such a thing?
Sent from my SPH-D700 using XDA App
Cam3ron1 said:
Is there such a thing?
Sent from my SPH-D700 using XDA App
Click to expand...
Click to collapse
If you think you could hang with typing some pretty long instructions using terminal emulator, it can be done manually. It's not for the faint of heart... and if you typed in the wrong bml and screw up your phone, it wouldn't be my fault.
If you can hang with that, then cool, I could post some instructions. All this is just so much easier though with the one click method.
Sent from my SPH-D700 using Tapatalk
Ok how long is it and how do I do it
Sent from my SPH-D700 using XDA App
OK...
Firstly, root the phone with z4root from the market. Also get Astro file manager and Android Terminal Emulator from the market while you're there. Connectbot can also be used as a terminal.
Download the one click root 1.4.0 from noobnl to your phone. Extract the contents using Astro file manager. Copy the following files and put them on the root of your sdcard:
redbend_ua
zImage
Now open the terminal app, and type the following commands exactly:
Code:
su
cat /sdcard/redbend_ua > /data/local/tmp/redbend_ua
chmod 755 /data/local/tmp/redbend_ua
/data/local/tmp/redbend_ua restore /sdcard/zImage /dev/block/bml8
Your phone will reboot after the flash.
Remember to type the commands exactly.
Sent from my SPH-D700 using Tapatalk
OK, if you want to cleanup afterwards, go back into terminal and type the following commands:
Code:
su
rm /data/local/tmp/redbend_ua
I will encourage anyone who reads this to not play with redbend_ua unless you know what you are doing. These instructions will work if done exactly to the letter.
Once again, I take no responsibility if you hose your phone.
Sent from my SPH-D700 using Tapatalk
Also, make a backup with ClockworkMod after you install it, so you have your current rom saved, just in case.
Sent from my SPH-D700 using Tapatalk
Download rom manager, then use rom manager to download clockwork mod, then use astro which is a free app available in the market which is very useful, to open the sd card folder, then go to clockwork mod folder then copy recovery-update.zip and paste it to the root of your sd card and rename it just update. It's already a zip file so you don't have to type.zip. Now reboot into stock recovery and apply update.zip. Does not work with froyo. But if you down load the clockwork redirect, then you can install that once you get into clockwork recovery after you flash a froyo rom before you reboot. But using adb to flash the permanent clockwork kernel is the best way.....try this......update.zip method:
1. boot into ClockworkMod Recovery
2. Apply : http://www.sdx-downloads.com/devs/noobnl/clockworkmod2.5.1.0update-fixed.zip
Sent from my spot on the earth.
Thanks that worked. I appriciate it
Sent from my SPH-D700 using XDA App
your welcome!
Sent from my spot on the earth.
How, how did you make it work!!!

Rooted, still can't delete News & Weather

Hi,
I used Unrevoked's one-click Mac .app to root my Aria. I can boot into Recovery fine, but perhaps pertinently (perhaps not) there's a weird loop I can't get out of: (bottom of post at http://forum.xda-developers.com/showthread.php?t=829439)
Anyways, I installed CM6.1-Liberty afterwards using ROM Manager. Now I would like to delete the News and Weather application, but I'm finding it difficult:
I've tried with the Super Manager application, a ROOT manager. It has SuperUser permissions, it tried to mount /system as R/W when I navigate to it, but when I rename the .apk file, the file retains its old name.
I've also tried booting into Recovery, mounting /system from the Partitions menu, then using the Terminal Emulator to do 'mv /system/app/blah.apk /system/app/blah.apk.bak.' But mv complains that the directory is not empty! (are .apk's even considered directories?)
Is something messed up with my ROM? Anything else I can try?
With the phone in recovery and /system mounted, using terminal try navigating to the actual /system/app folder and then removing the .apk. Not sure if its the same as windows, which is the rm command.
rm application.apk
Sent from my cm6.1 Aria using XDA App
It worked! Booted into Recovery, mounted /system, connected via USB, opened up an adb shell, and was able to move the desired apk.
I tested this moving HtcLockScreen.apk on my Liberated ROM. Will try to move the News & Weather application on the CM ROM too, but I don't see why it wouldn't work.
Thanks!!!
All good. Thank you so much.
I've gotta wonder now: what is it about Recovery that lets you do this? I can't find much (if any) hard info on Recovery online, or hboot/fastboot for that matter. It's a little annoying having to power down my phone to adb stuff around, then powering back up.
ninestraycats said:
All good. Thank you so much.
I've gotta wonder now: what is it about Recovery that lets you do this? I can't find much (if any) hard info on Recovery online, or hboot/fastboot for that matter. It's a little annoying having to power down my phone to adb stuff around, then powering back up.
Click to expand...
Click to collapse
I think it had to do with the fact that the aria is an s-on device (don't quote me on that). Whatever it is, the system can't be modified while android is running on the aria, so you have to boot into recovery to do it.
Sent from my cm6.1 Aria using XDA App
CallMeAria said:
I think it had to do with the fact that the aria is an s-on device (don't quote me on that). Whatever it is, the system can't be modified while android is running on the aria, so you have to boot into recovery to do it.
Sent from my cm6.1 Aria using XDA App
Click to expand...
Click to collapse
Not quite... You can put Titanium Backup into "Chuck Norris" mode and it will let you delete some system apps. Another easy way to achieve the same is to unzip the ROM, delete the .apk and .odex files you do not want, rezip it and re-flash. Bingo... the stuff you do not want is gone. You need to know what you are deleting though, some stuff is used by the system and other apps.
For anyone else whos wondering how to delete a non-uninstallable apk this is how I usually do it on windows (should be the same on mac too.)
- boot into recovery
-open new command promp
-adb shell mount /system
-adb shell rm -r /sysytem/app/apkname.apk
done and done, note letter case matters in apk name.
U can also extract the rom on ur computer and delete the .apks u don't want
Sent from my Liberty using XDA App

Question

How to get back to s-on and how do I remove Rom manager permanently as In not being on when I boot my phone like I was never rooted?I want to completely remove all of this
Sent from my HTC Glacier using Tapatalk
This worked for me
[COLOR="Red" said:
Process for turning S back on[/COLOR]
Download this file and unzip it to /sdcard on your device.
unroot.rar
http://www.mediafire.com/?12oi5elu7v2y8og
md5sum: aad4e64126cf8d92d7e8b5abb48fdadd
Terminal Emulator Method
1. Open up terminal editor on your device.(I prefer this method b/c you can see the output.)
a. Type "su" + enter to gain root privileges.
b. Type "cd /sdcard/unroot" + enter.
c. Type "sh unroot.sh" + enter.
d. Follow the onscreen prompts.
File Explorer Method
2. Open root explorer, sufbs, or some other file browser with root access.
a. Navigate to /sdcard/unroot.
b. Click on unroot.sh and allow it to run. Some file browsers ask permission before they execute scripts.
c. Wait 18 to 20 seconds and reboot your phone into the bootloader to check if S=on.
You now have S=ON again.
Since we opened up the nand to writes you should still retain persistent root privileges.
Hope this makes it all easier for you.
Cheers --grankin01
For everyone that is have trouble writing to the protected areas of the system after following the rooting procedures.
Reboot into Clockwork recovery and choose the mounts and storage option. From there choose mount system (or whichever protected directory you want access to) and click the trackpad. When unmount system shows you have rw access to the /system directory and all of its subs.
Click to expand...
Click to collapse
Sent from my HTC Glacier using XDA App
thanks how about rom manager
thanks how about rom manager
Click to expand...
Click to collapse
Should be able to using the market
Sent from my HTC Glacier using XDA App
Drzfr3shboialex said:
thanks how about rom manager
Click to expand...
Click to collapse
Look for PD15IMG.ZIP . It contains the stock rom. Just put that on the root of the sdcard. It will wipe everything. It's on a sticky in the dev forums. You just boot into hboot and follow the on screen promps.
If you are talking about the program then just uninstall it .
Sent from my HTC Glacier using XDA Premium App
Come on man!
post this in the right section...
Q&A
People here are glad to help you, but this is definitely not development related.
they have to make it so only people with at least 25 or more post's to post in the Dev Section of phones
Thanks guys
Sent from my HTC Glacier using Tapatalk

[Q] Not able to change boot animation

Im running Virtuous 1.0.1 and when i try to change my boot animation through root explorer i cant because it says im not allowed to change system files, what am i doing wrong? i see other people on youtube just change there without a problem but i cant seem to do the same.
Set system R/W in the corner?
Sent from my HTC Vision using XDA Premium App
SomEngangVar said:
Set system R/W in the corner?
Sent from my HTC Vision using XDA Premium App
Click to expand...
Click to collapse
when i press that at the system/customize/resource menu nothing happens liek i didnt even touch it... and i checked superuser and it has root permissions!
So when you press the button that says "mount r/w" near the top nothing happens? It doesn't change to "mount r/o"?
Sent from my HTC Vision using XDA Premium App
Thats correct
Clearing app data does nothing as well?
Sent from my HTC Vision using XDA Premium App
flashed back to CM7 and was able to successfully change the boot image!
Or u can simply use an app on the app store called. Boot Animation Changer Lite. Once u download it you will get a folder in your sd card that says like bootamios or something. Click on stock and delete the zip file that's in there. Drag the animation u want in there the .zip file and exit. Go back to app. Click animation in bottem righht. Scroll all the way down till u see stock and done.
Sent from my HTC Vision using XDA Premium App
Just use terminal, your app might be messing up or having compatibility issues for some reason.
Code:
su
mount -o remount,rw /system
cp /location/to/bootanimation.zip /system/media
That should do it.
Example:
su
mount -o remount,rw /system
cp sdcard/zips/animate/bootanimation.zip /system/media
i think it might of had something to do with the sense rom i was running, because once i flashed back to cm7 it was a piece of cake
Is there an animation sound that goes with lets say the honeycomb boot animation?
Sent from my GT-P1000 using XDA Premium App
For everyone that s having trouble with this...just follow vandale's method.worked for me. Just gotta make sure a different directory isn't also created. If so just delete and move the.zip file to the appropiate location. It'll work just fine after that.
Sent from my GT-P1000 using XDA Premium App
JasonTCelum said:
For everyone that s having trouble with this...just follow vandale's method.worked for me. Just gotta make sure a different directory isn't also created. If so just delete and move the.zip file to the appropiate location. It'll work just fine after that.
Sent from my GT-P1000 using XDA Premium App
Click to expand...
Click to collapse
Glad I could help.
Sent from my HTC Vision using XDA Premium App
Surely did sir...thank you
Sent from my GT-P1000 using XDA Premium App
KCRic said:
Just use terminal, your app might be messing up or having compatibility issues for some reason.
Code:
su
mount -o remount,rw /system
cp /location/to/bootanimation.zip /system/media
That should do it.
Example:
su
mount -o remount,rw /system
cp sdcard/zips/animate/bootanimation.zip /system/media
Click to expand...
Click to collapse
Since then i have flashed back to a sense rom and now i am trying to flash the vanilla mms app instead of the stock htc one. i have removed the HTc one but once again when try to mount r/w its like i didnt even push the button. it works when im not in the system folder but when in the system folder it wont allow me to press it. i have tried different root explorers but none seem to work with sense. but i know they work for other people so i dont know what to do!
edit: damn, was to high and posted in the wrong forum...
KCRic said:
Just use terminal, your app might be messing up or having compatibility issues for some reason.
Code:
su
mount -o remount,rw /system
cp /location/to/bootanimation.zip /system/media
That should do it.
Example:
su
mount -o remount,rw /system
cp sdcard/zips/animate/bootanimation.zip /system/media
Click to expand...
Click to collapse
Finally! I've been trying to get this done using simply Terminal emulator for the longest time and this actually worked! Thanks again
KCRic said:
Just use terminal, your app might be messing up or having compatibility issues for some reason.
Code:
su
mount -o remount,rw /system
cp /location/to/bootanimation.zip /system/media
That should do it.
Example:
su
mount -o remount,rw /system
cp sdcard/zips/animate/bootanimation.zip /system/media
Click to expand...
Click to collapse
Wicked1ab said:
Finally! I've been trying to get this done using simply Terminal emulator for the longest time and this actually worked! Thanks again
Click to expand...
Click to collapse
I guess I spoke too soon. this worked absolutely great when I used it with the Sense ROM however when I tried to do it with CM7 it didn't work. is there something I should change?
Are you using the boot anamation changer in the market?
Sent from my HTC Vision using XDA App
Lord_Xovon said:
Are you using the boot anamation changer in the market?
Sent from my HTC Vision using XDA App
Click to expand...
Click to collapse
I did once. and I've found that if I go into the bootanim folder and replace the bootanimation.zip in the stock folder, then go to boot anamation changer and tell it to run stock then it will change it to the new file however that just seems like a dumb way to go about doing it.

ADB question

I have a question regarding the adb push command. Can the same thing be accomplished by moving files with root explorer? For example, adb push randomfile.xxx system/data, can I just move the file to system/data with root explorer? Sorry if my command lines are incorrect, im going off memory. Thanks
Sent from my HTC Glacier using XDA Premium App
hlee3374 said:
I have a question regarding the adb push command. Can the same thing be accomplished by moving files with root explorer? For example, adb push randomfile.xxx system/data, can I just move the file to system/data with root explorer? Sorry if my command lines are incorrect, im going off memory. Thanks
Sent from my HTC Glacier using XDA Premium App
Click to expand...
Click to collapse
Yes you can do the same thing with any thing like Super Manager, root Explorer or Android Commander.
Thanks for the reply

Categories

Resources