upgrade recovery - HTC Pico (Explorer)

how to upgrade recovery plz

ajstyles667 said:
how to upgrade recovery plz
Click to expand...
Click to collapse
its simple
the same way you install ur 1st recovery flash via fastboot

ajstyles667 said:
how to upgrade recovery plz
Click to expand...
Click to collapse
The simplest way.
Download terminal emulator from play store..
Rename the recovery to recover.img and place it in root of your sd card .i.e /sdcrad.
Open terminal emulator..
type su
allow permission
type cd /sd card
Type flash_image recovery recovery.img
Reboot recovery Recovery updated.. :good:

Thanx bro
Sent from my HTC Explorer A310e using xda app-developers app

shubhojit89 said:
The simplest way.
Download terminal emulator from play store..
Rename the recovery to recover.img and place it in root of your sd card .i.e /sdcrad.
Open terminal emulator..
type su
allow permission
type cd /sd card
Type flash_image recovery recovery.img
Reboot recovery Recovery updated.. :good:
Click to expand...
Click to collapse
may be its 'flash_image flash recovery recovery.img' or you can install via recovery installer app. It's much easier.

Related

cwm recovery

So I rooted my lg phoenix but I cant get the cwm recovery. When I flash it and I hit reboot it goes on a blank black screen. Could somebody tell me how to get it.
If u are flashing for first time, then get flash_image file and copy it to system/xbin or system/bin.. and copy recovery.img to sdcard
in terminal emulator type this
su
flash_image recovery /sdcard/recovery_filename
Souron29 said:
If u are flashing for first time, then get flash_image file and copy it to system/xbin or system/bin.. and copy recovery.img to sdcard
in terminal emulator type this
su
flash_image recovery /sdcard/recovery_filename
Click to expand...
Click to collapse
hey souron29 can u pls help me in my post
http://forum.xda-developers.com/showthread.php?t=1931422
i have done the same thing but after hitting enter i only got
#
have i succefully flashed recovery???
thugnastie said:
So I rooted my lg phoenix but I cant get the cwm recovery. When I flash it and I hit reboot it goes on a blank black screen. Could somebody tell me how to get it.
Click to expand...
Click to collapse
Use ROM manager to flash cwm recovery
Phone : lg P500
ROM: Rashed's CM10
Kernel : DJNOXD 2.5.6
PRESS THANKS IF I HELPED YOU!!!
Careful with ROM Manager! Flash the 1 which says OBB (Old Baseband). DO NOT attempt to backup. Once you get CWM installed, uninstall ROM Manager, & do not use it again.
-- Sent from my TouchPad using Communities

help flashing twrp 2.2.2 via terminal

Alright so I put twrp recovery image on the root of my sd ... I open terminal type
Su
Cd sdcard
Flash_image recovery recoveryname(Der the name of it).img
And it says command not found
deleted
omario8484 said:
Alright so I put twrp recovery image on the root of my sd ... I open terminal type
Su
Cd sdcard
Flash_image recovery recoveryname(Der the name of it).img
And it says command not found
Click to expand...
Click to collapse
If you want to do it from terminal emulator on android, say name of recovery is twrp.img and is on root of sd....
Open terminal emulator
Type - su
Allow superuser permission,
Type -
dd if=sdcard/twrp.img of=/dev/block/mmcblk0p22
It will push, then do it again for good measure-
dd if=sdcard/twrp.img of=/dev/block/mmcblk0p22
Now power off, boot to bootloader and select recovery
as long as your rooted w. Bootloader unlocked you will have twrp recovery installed

[Q] Flash a zip from terminal emulator

Hi, i don't know if i've wrong the section sorry. However, i have a question.. is possible to flash a zip file from the terminal emulator?? Is there any way to create a shell that flash zip file from the terminal? i've seen that is possible flash a recovery image so i think is almost the same for the zip.. is it wrong? Thanks.
punticci said:
Hi, i don't know if i've wrong the section sorry. However, i have a question.. is possible to flash a zip file from the terminal emulator?? Is there any way to create a shell that flash zip file from the terminal? i've seen that is possible flash a recovery image so i think is almost the same for the zip.. is it wrong? Thanks.
Click to expand...
Click to collapse
Yes you can but that's depend. For example:
If you want to push the TWRP recovery (for a TF300T) with Terminal emulator it's:
Code:
su
dd if=/sdcard/twrp.blob of=/dev/block/mmcblk0p4
exit
try
Code:
echo "--update_package=/sdcard/path/to.zip" > /cache/recovery/command
reboot recovery
philos64 said:
Yes you can but that's depend. For example:
If you want to push the TWRP recovery (for a TF300T) with Terminal emulator it's:
Code:
su
dd if=/sdcard/twrp.blob of=/dev/block/mmcblk0p4
exit
Click to expand...
Click to collapse
Can you update supersu through terminal? For example I have su 2.65 and I download the 2.67 beta zip and do the update through terminal.
lolet said:
try
Code:
echo "--update_package=/sdcard/path/to.zip" > /cache/recovery/command
reboot recovery
Click to expand...
Click to collapse
This work! Thank you very much!
lolet said:
try
Code:
echo "--update_package=/sdcard/path/to.zip" > /cache/recovery/command
reboot recovery
Click to expand...
Click to collapse
Yeah! It's work! Thank!
is this only for recovey images, or can any flashable zip be flashed that way?
I would like to install opengapps pico 4.4 on my kindle paperwhite 2 (6th gen)

[Q] deleting a recovery

hello guys
I want to delete cwm (v6.0.1.9) to install twrp (v2.5.0.0).can anyone help me?
how i can delete CWM?
nasiroddin said:
hello guys
I want to delete cwm (v6.0.1.9) to install twrp (v2.5.0.0).can anyone help me?
how i can delete CWM?
Click to expand...
Click to collapse
Whoa! You don't delete a recovery Just install TWRP and it will overwrite CWM.
Follow the instructions in the TWRP thread using goomanager or download the CORRECT version for your device form the teamwin web site and use the following from a PC
rename the downloaded file to twrp.blob and reboot to the bootloader / fastboot screen
Code:
fastboot -i 0x0B05 flash recovery twrp.blob
fastboot -i 0x0B05 reboot
or from a terminal emulator on the device:
Save it to the root of your /sdcard directly (internal memory only) and rename it to twrp.blob
Launch terminal emulator or connect to your computer and open an adb shell, then type the following:
Code:
su
dd if=/sdcard/twrp.blob of=/dev/block/mmcblk0p4
Then reboot to complete installation.
sbdags said:
Whoa! You don't delete a recovery Just install TWRP and it will overwrite CWM.
Follow the instructions in the TWRP thread using goomanager or download the CORRECT version for your device form the teamwin web site and use the following from a PC
rename the downloaded file to twrp.blob and reboot to the bootloader / fastboot screen
Code:
fastboot -i 0x0B05 flash recovery twrp.blob
fastboot -i 0x0B05 reboot
or from a terminal emulator on the device:
Save it to the root of your /sdcard directly (internal memory only) and rename it to twrp.blob
Launch terminal emulator or connect to your computer and open an adb shell, then type the following:
Code:
su
dd if=/sdcard/twrp.blob of=/dev/block/mmcblk0p4
Then reboot to complete installation.
Click to expand...
Click to collapse
thanks
now I install twrp and i want to update from jb 4.1 to jb 4.2 and i downloaded jb 4.2 frimware (WW_epad-user-10.6.1.14.8) from asus global site.can you help me how to update my tablet to this version?(my tablet is unlocked so suggest me a way that doesn't cause a (hard or soft) brick) thanks a lot
nasiroddin said:
thanks
now I install twrp and i want to update from jb 4.1 to jb 4.2 and i downloaded jb 4.2 frimware (WW_epad-user-10.6.1.14.8) from asus global site.can you help me how to update my tablet to this version?(my tablet is unlocked so suggest me a way that doesn't cause a (hard or soft) brick) thanks a lot
Click to expand...
Click to collapse
You can just flash the update file from TWRP. You will loose your custom recovery and root if you flash the stock rom. So you would have to re-install TWRP and root again.
If you come from any kind of custom rom it's highly recommended to do a clean install of the stock rom. Wipe everything, don't restore apps from a backup (their data should be ok to restore), install all your apps from the Play Store.
Sent from my DROID4 using Tapatalk 2

[HOWTO] Flash custom recovery from phone using Terminal(Root)

Requirements:
1. Rooted Yuphoria phone
2. Any custom recovery image (.img) file like TWRP or CWM placed in phone/SD card.
3. Terminal Emulator app
Steps:
1. Open Terminal Emulator app..
2. Enter
Code:
su
and grant it root permissions.
3. To backup current recovery (to memory card), enter the following:
Code:
dd if=/dev/block/bootdevice/by-name/recovery of=/storage/sdcard1/recovery_backup.img
4. To flash a recovery (for example, if it is named TWRP.img and placed in Internal Storage's root), Enter the following:
Code:
dd if=/sdcard/TWRP.img of=/dev/block/bootdevice/by-name/recovery
Or for example, if the recovery to flash is placed in Memory Card's root and named TWRP.img, enter the following:
Code:
dd if=/storage/sdcard1/TWRP.img of=/dev/block/bootdevice/by-name/recovery
That's It!! The recovery is flashed from phone itself..
To boot into recovery from Terminal, use:
Code:
su
reboot recovery
Reply if you have any issues/doubts
Does this work in yuphoria 5010a pure android
Sent from my YU5010A using XDA-Developers mobile app
arun531 said:
Does this work in yuphoria 5010a pure android
Sent from my YU5010A using XDA-Developers mobile app
Click to expand...
Click to collapse
Yes..
Or else you can also use "Flashify" app from Play Store
did it need to unlock bootloader first in yuphoria stock android...?

Categories

Resources