[TOOL][Windows]OneClick Bootanimator For Pico - HTC Pico (Explorer)

Hey Guys , I have made a tool to change the bootanimation of our pico from windows only. Now There Is No Need to goto your mobile and open your file explorer and doing all the work to change a bootanimation.By this tool you can change your bootanimation by just a single click.:laugh:
Requirements:
ADB/Fastboot
Follow This Guide:
http://forum.xda-developers.com/showthread.php?t=1955627
Thanks To Andy For Such An Easy Guide.
This Tool Works with all The Roms Except Stock Rom
For Sense4 Roms:
1.Download The File bootaniflasher[Sense 4] From here
2. Extract It on Your Pc.
3. Open Folder bootaniflasher[sense4].
4. Now Just Place The bootanimation you want and name it as hTC_bootup.zip
5. Now Run The bootani.bat and press Enter.[Make Sure USB Debugging is Enabled]
6. Your Device Will Reboot Automatically
For CM Roms:
1. Download The File bootaniflasher[CM] From here
2. Extract It on Your PC.
3. Open Folder bootaniflasher[CM].
4. Now Just Place The bootanimation you want and name it as bootanimation.zip
5. Now Run The bootani.bat and press enter.[make sure USb Debugging is Enabled].
6. Your Device will Reboot Automatically.
This Is My First Tool . Please Try It And Tell If Its Working Or Not Waiting For The Responses.
Note: If You want this tool for any other rom eg AOKP,Panadroid, etc. Just PM me the Source/directory where the bootanimation is stored.
Hit Thanks If I Helped You

Reserved :thumbup:
Sent from my HTC Explorer using xda app-developers app

Do we need to mount...like R/O ??
Sent from my HTC Explorer A310e using xda app-developers app

new_ay said:
Do we need to mount...like R/O ??
Sent from my HTC Explorer A310e using xda app-developers app
Click to expand...
Click to collapse
Yes .. two R/W ... :thumbup:
Sent from my HTC Explorer using xda app-developers app

Dude sometimes i just get a black screen instead of the bootanimation!! could you plZ temme what am i doin wrong??
Sent from my HTC Explorer A310e using xda premium

salil.bajaj said:
Dude sometimes i just get a black screen instead of the bootanimation!! could you plZ temme what am i doin wrong??
Sent from my HTC Explorer A310e using xda premium
Click to expand...
Click to collapse
Which Rom Are You using ???

Guys Plz Do A review???

Saumitra Yadav said:
Which Rom Are You using ???
Click to expand...
Click to collapse
cm10 beta6
Sent from my HTC Explorer A310e using xda premium

salil.bajaj said:
cm10 beta6
Sent from my HTC Explorer A310e using xda premium
Click to expand...
Click to collapse
Use the tool for CM and make sure your bootanimatiom name should be bootanimatiom.zip :thumbup:
Sent from my HTC Explorer using xda app-developers app

To Saumitra Yadav:
My antivir blocks your zip file and write me this "Win32/Ramnit.H virus". Is this normal and just error of my antivirus, or it is really infected?

Matysek1984 said:
To Saumitra Yadav:
My antivir blocks your zip file and write me this "Win32/Ramnit.H virus". Is this normal and just error of my antivirus, or it is really infected?
Click to expand...
Click to collapse
The file is not infected bro .... it's your antivirus defect .... I use avast and I got no error.... try this tool n give a review :thumbup:
Sent from my HTC Explorer A310e using xda app-developers app

Saumitra Yadav said:
The file is not infected bro .... it's your antivirus defect .... I use avast and I got no error.... try this tool n give a review :thumbup:
Sent from my HTC Explorer A310e using xda app-developers app
Click to expand...
Click to collapse
Maybe it is error of my antivirus (ESET Smart Security). I already installed your bootanim manually, it looks very good, nice work

Matysek1984 said:
Maybe it is error of my antivirus (ESET Smart Security). I already installed your bootanim manually, it looks very good, nice work
Click to expand...
Click to collapse
Try this tool to install in just a single click by this tool :thumbup:
Sent from my HTC Explorer A310e using xda app-developers app

Saumitra Yadav said:
Try this tool to install in just a single click :thumbup:
Sent from my HTC Explorer A310e using xda app-developers app
Click to expand...
Click to collapse
Sent from my HTC Explorer A310e using xda app-developers app

Thanks

A couple of reasons why this tool "might" not work:
Hi! First of all, I haven't tried out this "tool" yet, as I don't have windows :silly:
But, there are a couple of reasons why I think that your tool "might" not work at all times.
First of all, enabling "USB Debugging" alone is not enough. You need to configure root access for both "Apps and ADB" in the case of CyanogenMod. (AOKP provides root access by default, so, it wouldn't be a problem in the case of AOKP.)
After enabling root access to both "Apps and ADB", you "might" need to invoke "su" at least once. And, mounting the /system partition as r/w is a "must-do".
I have made some changes to the code, using this guide (http://forum.xda-developers.com/wiki/Guide:Using_the_Terminal) as reference.
Code:
@ECHO OFF
COLOR 9b
ECHO OneClick Bootanimator For HTC EXPLORER[CM Roms]
ECHO By: Saumitra Yadav
ECHO Make sure your phone has usb debugging mode enabled!
ECHO Make sure you put your custom bootanimation.zip in this folder!
ECHO Use this at your own risk!
ECHO .
ECHO .
ECHO By pressing enter you understand the risks.
PAUSE
ECHO Waiting for device...
ECHO.
adb wait-for-device
ECHO Mounting /system partition as r/w...
adb shell su
adb shell mount -o rw,remount -t yaffs2 system /system
ECHO Sending bootanimation.zip
ECHO.
adb push bootanimation.zip /system/media/bootanimation.zip
ECHO Done sending bootanimation.zip
ECHO.
ECHO Mounting /system partition as r/o...
adb shell mount -o ro,remount -t yaffs2 system /system
ECHO Rebooting device...
adb reboot
ECHO Reboot command initiated.
ECHO Thanks for using this script.
PAUSE
EXIT
And, a humble request... Do try to keep the code understandable. Example: The output "Finished re-booting" comes before the script initiates rebooting sequence.
Do let me know if this works

vineethraj49 said:
Hi! First of all, I haven't tried out this "tool" yet, as I don't have windows :silly:
But, there are a couple of reasons why I think that your tool "might" not work at all times.
First of all, enabling "USB Debugging" alone is not enough. You need to configure root access for both "Apps and ADB" in the case of CyanogenMod. (AOKP provides root access by default, so, it wouldn't be a problem in the case of AOKP.)
After enabling root access to both "Apps and ADB", you "might" need to invoke "su" at least once. And, mounting the /system partition as r/w is a "must-do".
I have made some changes to the code, using this guide (http://forum.xda-developers.com/wiki/Guide:Using_the_Terminal) as reference.
Code:
@ECHO OFF
COLOR 9b
ECHO OneClick Bootanimator For HTC EXPLORER[CM Roms]
ECHO By: Saumitra Yadav
ECHO Make sure your phone has usb debugging mode enabled!
ECHO Make sure you put your custom bootanimation.zip in this folder!
ECHO Use this at your own risk!
ECHO .
ECHO .
ECHO By pressing enter you understand the risks.
PAUSE
ECHO Waiting for device...
ECHO.
adb wait-for-device
ECHO Mounting /system partition as r/w...
adb shell su
adb shell mount -o rw,remount -t yaffs2 system /system
ECHO Sending bootanimation.zip
ECHO.
adb push bootanimation.zip /system/media/bootanimation.zip
ECHO Done sending bootanimation.zip
ECHO.
ECHO Mounting /system partition as r/o...
adb shell mount -o ro,remount -t yaffs2 system /system
ECHO Rebooting device...
adb reboot
ECHO Reboot command initiated.
ECHO Thanks for using this script.
PAUSE
EXIT
And, a humble request... Do try to keep the code understandable. Example: The output "Finished re-booting" comes before the script initiates rebooting sequence.
Do let me know if this works
Click to expand...
Click to collapse
Will try it when i reach home :thumbup:
Sent from my HTC Explorer A310e using xda app-developers app

Saumitra Yadav said:
Will try it when i reach home :thumbup:
Sent from my HTC Explorer A310e using xda app-developers app
Click to expand...
Click to collapse
I think the mounting is needed in stock rom coz in all custom roms the system is mounted as r/w .
PS: Now this tool will work on stock also ... coz you edited the script thanks :thumbup:
Sent from my HTC Explorer A310e using xda app-developers app

Related

[Q] Lock Screen & Home Button not working

After upgrading my Samsung Galaxy 3 to Indroid V6 I found that my phones Lock screen is gone & Home button is only working to wake up phone and not for it's normal function, what do I do please help me out???????
THanks in Advance.........
Do as follows
Open terminal emulator
Type
$su
#fix.sh
# reboot force
This may help you thanks.....
Sent from my GT-I5800 using XDA App
Thanks for your reply dude, but it didnt worked.... ......
CANY ANYONE SUGGEST ME WHAT TO DO?? ALSO NOW AM FACING CALL PROBLEMS, VIDEO PLAYER NOT WORKING, ETC......SO SHOULD I SHIFT TO SOME OTHER ROM??
Sent from my GT-I5800 using XDA App
when i try fix.sh i receive the error not found what directory should i be in?
the way i fixed this before is by following these instructions
1-Copy sqlite3 to /system/bin
2- chmod 777 /system/bin/sqlite3
3-Type following command in ADB or Terminal Emulator
sqlite3 /data/data/com.android.providers.settings/databases/settings.db "INSERT INTO secure (name,value) VALUES ('device_provisioned','1');"
Click to expand...
Click to collapse
worked fine again after a reboot

[XL] [Root]Guide: Rooting Xperia L (C2104, C2105)

#Thread clean up due. Expect it this weekend. Sorry if the information below is confusing. Will fix ASAP.
Don't know how so many people survive without rooting their androids. I can't live without it. So here is the method for rooting Xperia L phone.
For more info on Xperia L check this out:
http://forum.xda-developers.com/showthread.php?t=2196066
This includes comprehensive steps which will include unlocking bootloader and getting your phone rooted.
****WARNING: Because this unlocks your bootloader hence you void your warranty.
ROOT
Truthfully I do not know who made this new script. I just had it on my laptop so putting it here for other's use. Do point me if its someone's, so I can give credits.
TO ROOT,
Connect the phone in debugging mode via USB. To enable debugging mode, go to Settings => Development => Check "USB Debugging".
Wait for the drivers to install. Happens automatically on Windows 7 and Windows 8/8.1.
Download the zip file below and extract it.
After extracting, run "install.bat". Admin rights usually not needed.
Follow On-Screen instructions.
Partial Root complete. If the exploit fails to run, try running again.
Now if you wish to unlock the bootloader, follow this:
http://forum.xda-developers.com/showthread.php?t=2332900
Do backup your TA partition as described in the thread above.
Thank You.
No bootloader unlock? I'm not Sony expert but we couldn't write in system partition without unlocking in HTCs.
Sent from my C2104 using Tapatalk 4 Beta
---------- Post added at 04:02 PM ---------- Previous post was at 04:01 PM ----------
I'll root as soon as i reach my home. Been dying to use apps like GMD Gesture Control.
Sent from my C2104 using Tapatalk 4 Beta
AayushDhuria said:
No bootloader unlock? I'm not Sony expert but we couldn't write in system partition without unlocking in HTCs.
Sent from my C2104 using Tapatalk 4 Beta
---------- Post added at 04:02 PM ---------- Previous post was at 04:01 PM ----------
I'll root as soon as i reach my home. Been dying to use apps like GMD Gesture Control.
Sent from my C2104 using Tapatalk 4 Beta
Click to expand...
Click to collapse
Thats the difference, this pushes files to /data. See code below:
Code:
chmod +x $adb
$adb kill-server
echo "[*] Waiting for device..."
$adb wait-for-device
echo "[*] Device found."
echo "[*] Pushing exploit..."
$adb push pwn /data/local/tmp/pwn
$adb shell chmod 755 /data/local/tmp/pwn
echo "[*] Pushing root tools..."
$adb push su /data/local/tmp/su
$adb push busybox /data/local/tmp/busybox
$adb install Superuser.apk
echo "[*] Rooting phone..."
$adb shell /data/local/tmp/pwn
echo "[*] Cleaning up..."
$adb shell rm /data/local/tmp/pwn
$adb shell rm /data/local/tmp/su
$adb shell rm /data/local/tmp/busybox
echo "[*] Exploit complete. Press enter to reboot and exit."
dj2tusk said:
Thats the difference, this pushes files to /data. See code below:
Code:
chmod +x $adb
$adb kill-server
echo "
[*] Waiting for device..."
$adb wait-for-device
echo "
[*] Device found."
echo "
[*] Pushing exploit..."
$adb push pwn /data/local/tmp/pwn
$adb shell chmod 755 /data/local/tmp/pwn
echo "
[*] Pushing root tools..."
$adb push su /data/local/tmp/su
$adb push busybox /data/local/tmp/busybox
$adb install Superuser.apk
echo "
[*] Rooting phone..."
$adb shell /data/local/tmp/pwn
echo "
[*] Cleaning up..."
$adb shell rm /data/local/tmp/pwn
$adb shell rm /data/local/tmp/su
$adb shell rm /data/local/tmp/busybox
echo "
[*] Exploit complete. Press enter to reboot and exit."
Click to expand...
Click to collapse
Ah, that just skipped my mind. Been using Samsung's and it's pretty easy on them. Good stuff Now I can get rid of bloatware and use Autostarts to prevent useless battery drain.
Sent from my C2104 using Tapatalk 4 Beta
AayushDhuria said:
Ah, that just skipped my mind. Been using Samsung's and it's pretty easy on them. Good stuff Now I can get rid of bloatware and use Autostarts to prevent useless battery drain.
Sent from my C2104 using Tapatalk 4 Beta
Click to expand...
Click to collapse
Thats the reason I rooted. Looks like bootloader has also been unlocked. See here. http://xperiafirmware.com/8-firmware/36-sony-xperia-l-c2105
The page is C2105 centric. No idea if it works good for C2104. Take a look..!
@AayushDhuria, Guess you could change your signature now.!
the MotoChopper exploit is posted by @djrbliss
its surprising to see NO MENTION of his in the OP...
DooMLoRD said:
the MotoChopper exploit is posted by @djrbliss
its surprising to see NO MENTION of his in the OP...
Click to expand...
Click to collapse
Thank you DooMLorRD for reminding me. Just linked to the thread and forgot to mention it. Thnx again, Updating OP.
Hey man thanks for adding me in the OP. I am facing a few problems with the root and need to confirm if they happen with you to!? So i was trying to delete a few apps with root app delete https://play.google.com/store/apps/...1bGwsMSwxLDMsInpzai5hbmRyb2lkLnVuaW5zdGFsbCJd and each time i hit delete, it rebooted my phone :/ Does this happen with anyone of you?
ishanbhatnagr96 said:
Hey man thanks for adding me in the OP. I am facing a few problems with the root and need to confirm if they happen with you to!? So i was trying to delete a few apps with root app delete https://play.google.com/store/apps/...1bGwsMSwxLDMsInpzai5hbmRyb2lkLnVuaW5zdGFsbCJd and each time i hit delete, it rebooted my phone :/ Does this happen with anyone of you?
Click to expand...
Click to collapse
Not yet..!! Will try and respond. Abhi me heading to BBQ nation..
dj2tusk said:
Thats the reason I rooted. Looks like bootloader has also been unlocked. See here. http://xperiafirmware.com/8-firmware/36-sony-xperia-l-c2105
The page is C2105 centric. No idea if it works good for C2104. Take a look..!
Click to expand...
Click to collapse
You could just unlock bootloader via Sonymobile's portal. Its official and working. I'll unlock and push SU to System.
Anyways DooMLord, It's nice to see you in mid range Xperia thread. Can I have a little hope for some development?
Sent from my C2104 using Tapatalk 4 Beta
---------- Post added at 08:50 PM ---------- Previous post was at 08:49 PM ----------
ishanbhatnagr96 said:
Hey man thanks for adding me in the OP. I am facing a few problems with the root and need to confirm if they happen with you to!? So i was trying to delete a few apps with root app delete https://play.google.com/store/apps/...1bGwsMSwxLDMsInpzai5hbmRyb2lkLnVuaW5zdGFsbCJd and each time i hit delete, it rebooted my phone :/ Does this happen with anyone of you?
Click to expand...
Click to collapse
Why don't you just delete via Root Explorer? Or if a little skeptical, Titanium Backup?
Sent from my C2104 using Tapatalk 4 Beta
Root explorer crashed on me too...
Sent from my C2104 using xda app-developers app
Also seems to reboot when trying to edit build.prop :/ Tried a few tweaks to exploit here and there and still rebooting :/
So any modification to /system partition is causing a reboot? Agree? I'll update the OP accordingly..
Sent from my C2104 using xda app-developers app
dj2tusk said:
So any modification to /system partition is causing a reboot? Agree? I'll update the OP accordingly..
Sent from my C2104 using xda app-developers app
Click to expand...
Click to collapse
What's the use of "rooting" when you don't even have root access?
And another question for doomlord if he happens to read this, Can I simply root just by unlocking bootloader and pushing SU app and binary to /system? I'm totally new to Sony Xperias. Don't know anything about firmware packages and stuff.
Would've created a custom ROM had it been a Samsung device.
I just need some idea.
Sent from my C2104 using Tapatalk 4 Beta
Well as for rooting, I was able to run several applications that require root access. But none of those require to access /system in rw mode.
Sent from my C2104 using xda app-developers app
That's the problem. I can change the frequency and other things but as soon as any app tries to access /system BOOM it reboots
Sent from my Xperia L using XDA-developers app
Hmm... Anyone with unlocked boot loader? Try and access /system with this please.
Sent from my C2104 using xda app-developers app
ishanbhatnagr96 said:
That's the problem. I can change the frequency and other things but as soon as any app tries to access /system BOOM it reboots
Sent from my Xperia L using XDA-developers app
Click to expand...
Click to collapse
I think its because locked boot loader prevents you to write system partition, it messes up and thus your phone reboots.
PS: Thanked by mistake.
Sent from my C2104 using Tapatalk 4 Beta
AayushDhuria said:
I think its because locked boot loader prevents you to write system partition, it messes up and thus your phone reboots.
PS: Thanked by mistake.
Sent from my C2104 using Tapatalk 4 Beta
Click to expand...
Click to collapse
Does rooting/un-rooting quiet constantly effect battery backup?

[TUT] Burnt Nand? Let's Fix it.

Okay, this process is basically of cute_prince. I'm just telling you guys how to make it work properly. I DONT OWN IT.
First of all things you'll need.
1. Download the attached file.
2. ADB files.
2. TWRP recovery 2.4.X.X
3. Youre phone.
That's it.
Step 1. rename the downloaded file from flash_erase.txt to flash_erase.
Step 2. Put it in sd-card
step 3. go to twrp recovery.
step 4. mount system and sdcard
step 5. go to advance and then file manager.
step 6. locate the flash_erase file. copy it.
step 6. on the main root there'll be a folder 'system', go in. Then go into xbin and paste it there.
step 7. Again navigate to system\xbin and select flash_erase and set permission to 755. there will be a tab of CMOD 755 or somthing like that.
step 8. now go back to the main recovery menu and keep the system mounted.
step 9. connect ur phone to your PC.
step 10. open command prompt and navigate to the folder where you ADB files are placed from command prompt..
step 11. now copy this as it is and paste it.
adb shell
su
cd /system/xbin
./flash_erase -N /dev/mtd/mtd4 0 0
./flash_erase -N /dev/mtd/mtd2 0 0
./flash_erase -N /dev/mtd/mtd3 0 0
./flash_erase -N /dev/mtd/mtd5 0 0
step 12. after the first three mtds gets cleaned i-e you'll see 100% mark three times, then press enter. there you'll see the fourth mtd getting erased.
after that type 'exit' and remove the cable.
step 13. now go to wipe and wipe in sequence
1. cache
2. dalvic
3. system
4. sd-ext
5. android secure.
step 14. flash your rom
original link to the thread: http://forum.xda-developers.com/showthread.php?p=36868966
Helped Me Thanks
xbin folder doesn't exist in the system folder what to do ????
Jimit.Patel said:
xbin folder doesn't exist in the system folder what to do ????
Click to expand...
Click to collapse
Flash a ROM ,when came xbin folder...
Sent from my HTC Explorer A310e using xda premium
after running the commands getting an error
"adb server is out of date killing....
*daemon started successfully*
error: device not found "
what to do??? i really suck at this
thx in advance
Jimit.Patel said:
after running the commands getting an error
"adb server is out of date killing....
*daemon started successfully*
error: device not found "
what to do??? i really suck at this
thx in advance
Click to expand...
Click to collapse
Follow this
http://forum.xda-developers.com/showthread.php?t=2389445
Sent from my HTC Explorer A310e using xda premium
Taha Haq said:
Follow this
http://forum.xda-developers.com/showthread.php?t=2389445
Sent from my HTC Explorer A310e using xda premium
Click to expand...
Click to collapse
thx it worked back to stock rom :good:
now trying fly rom
ran into another problem only stock rom works
all other roms go into boot loops, any way out ???
Jimit.Patel said:
ran into another problem only stock rom works
all other roms go into boot loops, any way out ???
Click to expand...
Click to collapse
Flash minicm9 and see the internal storage it should be around 145mb and use philz recovery
Sent from my HTC Explorer A310e using xda premium
Great tutorial! Keep it up!
Helped? Thanks maybe!.
Taha Haq said:
Flash minicm9 and see the internal storage it should be around 145mb and use philz recovery
Sent from my HTC Explorer A310e using xda premium
Click to expand...
Click to collapse
ill try flashing it but what could be the reason behind this ????
Hard luck mini cm9 also going into boot loop
Jimit.Patel said:
ill try flashing it but what could be the reason behind this ????
Hard luck mini cm9 also going into boot loop
Click to expand...
Click to collapse
Follow the tutorial again and use philz recovery and aroma file manager
Sent from my HTC Explorer A310e using xda premium
Taha Haq said:
Follow the tutorial again and use philz recovery and aroma file manager
Sent from my HTC Explorer A310e using xda premium
Click to expand...
Click to collapse
thx for the reply but didnt work
followed the guide exactly step by step still goes into boot loops
after flashing stock rom i noticed that my internal memory is low about 3mb so could it be the problem (internar memory) ????
Jimit.Patel said:
after flashing stock rom i noticed that my internal memory is low about 3mb so could it be the problem (internar memory) ????
Click to expand...
Click to collapse
No...:thumbup:
It's ok:beer:
Sent from my HTC Explorer A310e using Tapatalk 2
If its ok then how to solve it???
Cant install custom rom
If using stock rom cannot use any apps
What to do im stuck
Sent from my HTC Explorer using xda premium
Jimit.Patel said:
If its ok then how to solve it???
Cant install custom rom
If using stock rom cannot use any apps
What to do im stuck
Sent from my HTC Explorer using xda premium
Click to expand...
Click to collapse
Flyrom contains an overclocked kernal so ur phone will not boot. Try hpsgill rom or cuteprince sense 4.1 rom.
thekoolanie said:
No...:thumbup:
It's ok:beer:
Sent from my HTC Explorer A310e using Tapatalk 2
Click to expand...
Click to collapse
thats 3 MB of ur memory completely burnt. u cant get it back. anything greater than 135MB is good
SDFDS
unmount cache problem
sneakerspark said:
Okay, this process is basically of cute_prince. I'm just telling you guys how to make it work properly. I DONT OWN IT.
First of all things you'll need.
1. Download the attached file.
2. ADB files.
2. TWRP recovery 2.4.X.X
3. Youre phone.
That's it.
Step 1. rename the downloaded file from flash_erase.txt to flash_erase.
Step 2. Put it in sd-card
step 3. go to twrp recovery.
step 4. mount system and sdcard
step 5. go to advance and then file manager.
step 6. locate the flash_erase file. copy it.
step 6. on the main root there'll be a folder 'system', go in. Then go into xbin and paste it there.
step 7. Again navigate to system\xbin and select flash_erase and set permission to 755. there will be a tab of CMOD 755 or somthing like that.
step 8. now go back to the main recovery menu and keep the system mounted.
step 9. connect ur phone to your PC.
step 10. open command prompt and navigate to the folder where you ADB files are placed from command prompt..
step 11. now copy this as it is and paste it.
adb shell
su
cd /system/xbin
./flash_erase -N /dev/mtd/mtd4 0 0
./flash_erase -N /dev/mtd/mtd2 0 0
./flash_erase -N /dev/mtd/mtd3 0 0
./flash_erase -N /dev/mtd/mtd5 0 0
step 12. after the first three mtds gets cleaned i-e you'll see 100% mark three times, then press enter. there you'll see the fourth mtd getting erased.
after that type 'exit' and remove the cable.
step 13. now go to wipe and wipe in sequence
1. cache
2. dalvic
3. system
4. sd-ext
5. android secure.
step 14. flash your rom
original link to the thread: http://forum.xda-developers.com/showthread.php?p=36868966
Click to expand...
Click to collapse
unable to put attach file in system/xbin

[SCRIPT] Recovery & Kernel Management Tool

Hi guys,
I had some free time and decided to write this script specially for Terminal Emulator's users like me.
It's a simple script allows you to:
Backup
Restore backup
Flash
Reboot in any mode
Copy the script to /system/bin
recovery and /or kernel IMG files without the need to input so long codes again and again.
This script will make a new folder named Recovery-Kernel-Tools in your internal storage, including 3 more folders inside it:
Backups (max one backup for each partition, names are "case-sensitive")
Flash (but any recovery.img / boot.img to flash them, names are "case-sensitive")
Input (for future use)
Everything is self explanatory, when you execute this script for the first time, it will ask you to set your partitions, you can change them later at any time.
If it's useful for you and you need more options, feel free to suggest me.
Download link: ReKeTv1
After downloading, cd to installation folder and input:
Code:
su
sh ReKeTv1
If you're using Script Manager, just execute it as root.
Latest busybox is required.
Bassel Bakr said:
Hi guys,
I had some free time and decided to write this script specially for Terminal Emulator's users like me.
It's a simple script allows you to:
Backup
Restore backup
Flash
Reboot in any mode
Copy the script to /system/bin
recovery and /or kernel IMG files without the need to input so long codes again and again.
This script will make a new folder named Recovery-Kernel-Tools in your internal storage, including 3 more folders inside it:
Backups (max one backup for each partition, names are "case-sensitive")
Flash (but any recovery.img / boot.img to flash them, names are "case-sensitive")
Input (for future use)
Everything is self explanatory, when you execute this script for the first time, it will ask you to set your partitions, you can change them later at any time.
If it's useful for you and you need more options, feel free to suggest me.
Download link: ReKeTv1
After downloading, cd to installation folder and input:
Code:
su
sh ReKeTv1
If you're using Script Manager, just execute it as root.
Latest busybox is required.
Click to expand...
Click to collapse
There are three files in it...which 1 to download?
Sent from my GT-S7500 using Tapatalk 2
tandon.ayush said:
There are three files in it...which 1 to download?
Sent from my GT-S7500 using Tapatalk 2
Click to expand...
Click to collapse
ReKeTv1
Don't forget to leave some suggestions.
Bassel Bakr said:
ReKeTv1
Don't forget to leave some suggestions.
Click to expand...
Click to collapse
Tried with both terminal emulator and script manager
Got this error
" exec /system/bin/sh '/mnt/sdcard/download/ReKeTv1.txt'
# bin/sh '/mnt/sdcard/download/ReKeTv1.txt'
head: /mnt/sdcard/Recovery-Kernel-Tools/partitions: No such file or directory
tail: can't open '/mnt/sdcard/Recovery-Kernel-Tools/partitions': No such file or directory
tail: no files
Root access denied!
Please issue su command first"
Any solution?
Sent from my GT-S7500 using Tapatalk 2
tandon.ayush said:
Tried with both terminal emulator and script manager
Got this error
" exec /system/bin/sh '/mnt/sdcard/download/ReKeTv1.txt'
# bin/sh '/mnt/sdcard/download/ReKeTv1.txt'
head: /mnt/sdcard/Recovery-Kernel-Tools/partitions: No such file or directory
tail: can't open '/mnt/sdcard/Recovery-Kernel-Tools/partitions': No such file or directory
tail: no files
Root access denied!
Please issue su command first"
Any solution?
Sent from my GT-S7500 using Tapatalk 2
Click to expand...
Click to collapse
Run as root
Or in terminal emulator type
su
First
Bassel Bakr said:
Run as root
Or in terminal emulator type
su
First
Click to expand...
Click to collapse
Did both...still the same error
Any solution??
Sent from my GT-S7500 using Tapatalk 2
tandon.ayush said:
Did both...still the same error
Any solution??
Sent from my GT-S7500 using Tapatalk 2
Click to expand...
Click to collapse
In terminal emulator:
su
set -x
sh ReKeTv1 2> /sdcard/log1.txt
sh -n ReKeTv1 2> /sdcard/log2.txt
Then upload log1.txt & log2.txt files here.
Bassel Bakr said:
In terminal emulator:
su
set -x
sh ReKeTv1 2> /sdcard/log1.txt
sh -n ReKeTv1 2> /sdcard/log2.txt
Then upload log1.txt & log2.txt files here.
Click to expand...
Click to collapse
"No such file or directory"in both logs
Sent from my GT-S7500 using Tapatalk 2
tandon.ayush said:
"No such file or directory"in both logs
Sent from my GT-S7500 using Tapatalk 2
Click to expand...
Click to collapse
After set -x cd to installation directory then complete the code.

[Guide] nand recovery using phone [no need of pc]

I found a simple and easy way to recover burnt nand
So all of those guys who burnt their nand due to over clock can follow this method to recover burnt nand by using phone
What you will need:
HTC explorer
Working recovery
Files to download.
First download aroma file manager [ link is in the end of post ]
Then download flash_erase.txt from here
http://apicdn.viglink.com/api/click?key=null&out=http%3A%2F%2Fforum.xda-developers.com%2Fattachment.php%3Fattachmentid%3D1655489%26d%3D1358514526&loc=http%3A%2F%2Fforum.xda-developers.com
The Method
First put both files in sdcard
Boot into recovery.. now go to mounts and storage and mount everything
Now tap on install button and flash aroma file manager zip just like you flash a rom
A file manager will open now go to sdcard and rename flash_erase.txt to flash_erase
Now put this file into system/xbin and change permission to rwx,rwx, rwx
Stay in the same folder and tap menu open terminal emulater and enter these commands
Note: enter these commands one by one
./flash_erase -N /dev/mtd/mtd2 0 0
./flash_erase -N /dev/mtd/mtd4 0 0
./flash_erase -N /dev/mtd/mtd5 0 0
Note there are space after "erase" , "N" ,"2" , "0" these spaces are same for the second line and third line just replace 2 by 4 and 5
Click to expand...
Click to collapse
if you have twrp recovery then you dont need to install the aroma file manager twrp recovery has its own file manager you can use that to rename and transfer the file.
Now Remove
battery and reinsert it .
Go to recovery and:
format /boot
format /system
wipe data / factory reset
Now install your favourite ROM
Once the ROM is booted, goto storage
settings.. Everything should be fine now and
you should get around 140MB free depending
on your ROM
You can press the thank button as a token of appreciation
i think its same with pc method,just using terminal emulator as pc command。
wsdyleon said:
i think its same with pc method,just using terminal emulator as pc command。
Click to expand...
Click to collapse
@Taha Haq
Nice guide!
Yes just made easy for noobs
Sent from my HTC Explorer A310e using xda premium
Thanks
Sent from my HTC Explorer A310e using xda premium
I do all the steps but when i try to flash again cm10b6 i only have 102 MB free and 49 MB used with nothing installed
i-cone said:
I do all the steps but when i try to flash again cm10b6 i only have 102 MB free and 49 MB used with nothing installed
Click to expand...
Click to collapse
Try cm9
I think dalvik cache was on data/ in cm10 build 6
Sent from my HTC Explorer A310e using xda premium
Cm9 looks fine 146 MB free and 4.9 MB used but no even mni cm10... 32 MB used after flashing, i cant use cm10 on my pico anymore
Why don't you partition your sdcard? 146 is fine I get 145mb
Sent from my HTC Explorer A310e using xda premium
Delete
Hpsgill said:
Delete
Click to expand...
Click to collapse
Delete?
Sent from my HTC Explorer A310e using xda premium
Taha Haq said:
Delete?
Sent from my HTC Explorer A310e using xda premium
Click to expand...
Click to collapse
Problem fixed bro
So i removed question!
Sent from my HTC Explorer A310e using xda premium
Hpsgill said:
Problem fixed bro
So i removed question!
Sent from my HTC Explorer A310e using xda premium
Click to expand...
Click to collapse
Okay
Sent from my HTC Explorer A310e using xda premium
Taha Haq said:
I found another way to recover burnt nand it is quite easy
So all of those guys who burnt their nand due to over clock can follow this method to recover burnt nand by using phone
WHAT YOU WILL NEED:
HTC explorer (Pico)
Working recovery
FOR ALL THOSE GUYS WHO HAVE TWRP RECOVERY FOLLOW THIS
(Scroll down if you don't have)
First download flash_erase.txt and put it into SD card
Boot into recovery
Go to mounts and storage then mount all things
Then go into advanced then file manger then rename that file to flash_erase
Now move this file to system/xbin and set permission as 755
Open terminal command from recovery select that file which you put in system/xbin
Now type
./flash_erase -N /dev/mtd/mtd2 0 0
./flash_erase -N /dev/mtd/mtd4 0 0
./flash_erase -N /dev/mtd/mtd5 0 0
Note: enter these commands one by one
Now Remove
battery and reinsert it .
Goto recovery and:
format /boot
format /system
wipe data / factory reset
Now install your favourite ROM
Once the ROM is booted, goto storage
settings.. Everything should be fine now and
you should get around 140MB free depending
on your ROM
Download link for flash_erase.txt
http://forum.xda-developers.com/attachment.php?attachmentid=1655489&d=1358514526
Hit thanks if it helped
FOR ALL RECOVERIES OTHER THAN TWRP
First download aroma file manager 1.80 version from here
http://forum.xda-developers.com/showthread.php?t=1646108
Then download flash_erase.txt (link given above)
Put both files in sdcard
Boot into recovery.. now go to mounts and storage and mount all things
install aroma file manager from recovery
A file manager will open now go to sdcard and rename flash_erase.txt to flash_erase
Now put this file into system/xbin and change permission to rwx,rwx, rwx
Now open terminal command and type
./flash_erase -N /dev/mtd/mtd2 0 0
./flash_erase -N /dev/mtd/mtd4 0 0
./flash_erase -N /dev/mtd/mtd5 0 0
Note: Enter these commands one by one
Now Remove
battery and reinsert it .
Go to recovery and:
format /boot
format /system
wipe data / factory reset
Now install your favourite ROM
Once the ROM is booted, goto storage
settings.. Everything should be fine now and
you should get around 140MB free depending
on your ROM
Sent from my HTC Explorer A310e using xda premium
Click to expand...
Click to collapse
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Damn it worked like a charm
Easiest method ever
Sent from XDA App
saadahmeddar said:
View attachment 2169957
Damn it worked like a charm
Easiest method ever
Sent from XDA App
Click to expand...
Click to collapse
Thanks
Sent from my HTC Explorer A310e using xda premium
Taha Haq said:
Thanks
Sent from my HTC Explorer A310e using xda premium
Click to expand...
Click to collapse
dont mention it
keep it up!
thnx a lot thanked u 3 times u helped me soooo much
klamper said:
thnx a lot thanked u 3 times u helped me soooo much
Click to expand...
Click to collapse
Welcome bro
Sent from my gt-1900 using xda premium
Taha Haq said:
Welcome bro
Sent from my gt-1900 using xda premium
Click to expand...
Click to collapse
Hi I am having a strange problem from last night.... I never use OC kernels coz m on class 4
but from yesterday night none of my memory scripts are working like m2sd or int2ext
Suddenly my rom is started saying insufficient memory while I have more than enough.... Is it nand burnt??
can u pls help me with this. If I dont use any memory script I am able to install apps....
cuteitsme said:
Hi I am having a strange problem from last night.... I never use OC kernels coz m on class 4
but from yesterday night none of my memory scripts are working like m2sd or int2ext
Suddenly my rom is started saying insufficient memory while I have more than enough.... Is it nand burnt??
can u pls help me with this. If I dont use any memory script I am able to install apps....
Click to expand...
Click to collapse
Bro the pll2 oc doesn't burnt nand it is the old 800mhz oc which burn and it doesn't need a better class card
You can format partitions and if this doesn't
You can follow the procedure of burnt nand
Sent from my gt-1900 using xda premium

Categories

Resources