How specifically do you back up your iemi? - Verizon Samsung Galaxy S III

Just a normal TiBu data backup?
Thanks
Sent from my SCH-I535 using xda app-developers app

Move to general section. Might get more answers
Sent from my SCH-I535 using xda app-developers app

jcool13 said:
Just a normal TiBu data backup?
Thanks
Sent from my SCH-I535 using xda app-developers app
Click to expand...
Click to collapse
2 Methods, the first from: http://forum.xda-developers.com/showthread.php?t=1791291
Backup:
Code:
adb shell
su
dd if=/dev/block/mmcblk0p11 of=/sdcard/efs.sbn
(exit adb)
adb pull /sdcard/efs.sbn
Restore:
Code:
adb push efs.sbn /sdcard/efs.sbn
adb shell
su
dd if=/sdcard/efs.sbn of=/dev/block/mmcblk0p11
reboot
2nd option from: http://forum.xda-developers.com/showthread.php?t=1802024 (just read it)

madbuda said:
2 Methods, the first from: http://forum.xda-developers.com/showthread.php?t=1791291
Backup:
Code:
adb shell
su
dd if=/dev/block/mmcblk0p11 of=/sdcard/efs.sbn
(exit adb)
adb pull /sdcard/efs.sbn
Restore:
Code:
adb push efs.sbn /sdcard/efs.sbn
adb shell
su
dd if=/sdcard/efs.sbn of=/dev/block/mmcblk0p11
reboot
2nd option from: http://forum.xda-developers.com/showthread.php?t=1802024 (just read it)
Click to expand...
Click to collapse
that first method has been proven to not work. Think the second option is the only option.
Sent from my SCH-I535 using xda premium

xsteven77x said:
that first method has been proven to not work. Think the second option is the only option.
Sent from my SCH-I535 using xda premium
Click to expand...
Click to collapse
That was my understanding as well. Just seems to give people a false sense of security. Has anyone successfully restored using the backup? I've seen a few say they were unsuccessful in restoring the IMEI though.

This is the best tutorial that I've found. I believe the second method that was referenced only documents a method of restoring the IMEI in the event it is lost w/o a backup. This is a method of backing it up using QPST.
http://rootzwiki.com/topic/32397-tutorial-imei-backup-nv-with-qpst-us-variants/

Related

command to install apk

Is there a command that can be used in a terminal emulator on the hero to install an apk from the sdcard? If not can it be done using adb commands? I am trying one of the froyo roms and before I start installing anything through the market, I would like to install a file manager. I have AndExplorer in an apk on the sdcard but I can only access it through adb or a terminal emulator.
Just adb push it to systen/app or you could install appinstaller from the market.
Sent from my HERO200 using XDA App
Open terminal.apk and issue these commands hitting enter after each line.
su
cd /sdcard
cp "app.apk" /data/app
This should do the trick. I don't think it will work with a2sd but I could be wrong. I tested it out just a few minutes ago and it worked great.
Sent from my Heroic using XDA App
mbobino said:
Open terminal.apk and issue these commands hitting enter after each line.
su
cd /sdcard
cp "app.apk" /data/app
This should do the trick. I don't think it will work with a2sd but I could be wrong. I tested it out just a few minutes ago and it worked great.
Sent from my Heroic using XDA App
Click to expand...
Click to collapse
Worked great, thank you for the tip

MD5 Mismatch... :/

I am trying to revert back to my original stock.
i keep getting use the following code to solve this
"adb shell
# cd /sdcard/clockworkmod/backup/2010-06-29.20.22.53
# rm nandroid.md5
# md5sum *img > nandroid.md5"
where exactly do I enter this?
does the phone have to be in a certain mode
Bump
Sent from my SAMSUNG-SGH-I727 using xda premium
bump. help pweaseee
Are you using cwm
Sent from my SAMSUNG-SGH-I727 using Tapatalk
perhaps start over using a guide in dev or general forum.
easiest, just flash a base rooted ROM, not a whole lot different from "stock"
You need to learn how to use adb. Google it and find a guide. You can also do all of that from a terminal. Its just basic linux commands. Nothing fancy.
Sent from my SAMSUNG-SGH-I727 using XDA App

[HELP] O3D Kernel BackUp

Is there any tool that can backup my kernel? I mean just the kernel. I tried google and stuff but I can't find a thing.
makaramk said:
Is there any tool that can backup my kernel? I mean just the kernel. I tried google and stuff but I can't find a thing.
Click to expand...
Click to collapse
You can use ADB. I'll post the command when I get home.
The Dark Lestat said:
You can use ADB. I'll post the command when I get home.
Click to expand...
Click to collapse
That would be great But is there some app like the samsung kernel manager?
makaramk said:
That would be great But is there some app like the samsung kernel manager?
Click to expand...
Click to collapse
Nope. I don't believe there is.
The Dark Lestat said:
Nope. I don't believe there is.
Click to expand...
Click to collapse
Oh ok.. Waiting for your tutorial then
makaramk said:
Oh ok.. Waiting for your tutorial then
Click to expand...
Click to collapse
Open command prompt.
Code:
adb shell
su
dd if=/dev/block/mmcblk0p5 of=/sdcard/boot.img
exit
exit
If you use Terminal on the phone, use this.
Code:
su
dd if=/dev/block/mmcblk0p5 of=/sdcard/boot.img
exit
exit
The Dark Lestat said:
Open command prompt.
Code:
adb shell
su
dd if=/dev/block/mmcblk0p5 of=/sdcard/boot.img
exit
exit
If you use Terminal on the phone, use this.
Code:
su
dd if=/dev/block/mmcblk0p5 of=/sdcard/boot.img
exit
exit
Click to expand...
Click to collapse
Thanks And just one question.. Can you tell me a got kernel for baseband v21a? I was looking in the Android Development section but I can't find one...
Titan Kernel or update to v21e and use promethius
Sent from my LG-P920 using Tapatalk
Titan Kernel or update to v21e and use promethius kernel
Sent from my LG-P920 using Tapatalk

Reverting to play from legacy on ThiaiZ 2.8

Is there any way to get the original "market"/play back?
The legacy play is not working with new purchases an don't filter comments on version / device.
I tried restoring an old backup from titanium backup but that failed, do i have to do something to clean out legacy play first?
Sent from my LG-P920 using Tapatalk 2
First connect your phone with USB Debugging turned ON, on your pc and open ADB shell...
Then type:
su [hit enter]
mount -o rw,remount /system [enter]
rm /system/app/PhoneskyLegacy.apk [enter]
pm uninstall com.android.vending [enter]
reboot [enter]
After rebooting you will see the old market app just open it and you will be able to update it to the new Google Play 3.8.16 If you don't find the app (but I am pretty sure that you will) download it here!
HIT thanks if it worked
Awesome, that did indeed work
Thanks!
Sent from my LG-P920 using Tapatalk 2
Bender303 said:
Is there any way to get the original "market"/play back?
The legacy play is not working with new purchases an don't filter comments on version / device.
I tried restoring an old backup from titanium backup but that failed, do i have to do something to clean out legacy play first?
Click to expand...
Click to collapse
Strange. I've got both Play apps on ThiaiZ 2.8, the new and the legacy one, and both are working like they should. I just freeze the Legacy app when I don't use it with Titanium backup.
makaramk said:
First connect your phone with USB Debugging turned ON, on your pc and open ADB shell...
Then type:
su [hit enter]
mount -o rw,remount /system [enter]
rm /system/app/PhoneskyLegacy.apk [enter]
pm uninstall com.android.vending [enter]
reboot [enter]
After rebooting you will see the old market app just open it and you will be able to update it to the new Google Play 3.8.16 If you don't find the app (but I am pretty sure that you will) download it here!
HIT thanks if it worked
Click to expand...
Click to collapse
hi dude. i install everything for adb, but when i tipping "adb shell su", without ", i riceive that messagge: error: device offline.
i try with another cable but nothing change.
when i type adb devices-----> number offline
i have usb debugging turned on and all drivers install.
what is wrong?
tnx.
botson71 said:
Strange. I've got both Play apps on ThiaiZ 2.8, the new and the legacy one, and both are working like they should. I just freeze the Legacy app when I don't use it with Titanium backup.
Click to expand...
Click to collapse
That's strange, i read about that there would be a separate market app for legacy but mine only had legacy.
However I did a dirty flash from Promethius, maybe something to do with that.
Sent from my LG-P920 using Tapatalk 2
speedyranger said:
hi dude. i install everything for adb, but when i tipping "adb shell su", without ", i riceive that messagge: error: device offline.
i try with another cable but nothing change.
when i type adb devices-----> number offline
i have usb debugging turned on and all drivers install.
what is wrong?
tnx.
Click to expand...
Click to collapse
Did you write "adb shell" and then "su"?
Sent from my LG-P920 using Tapatalk 2
Bender303 said:
Did you write "adb shell" and then "su"?
Sent from my LG-P920 using Tapatalk 2
Click to expand...
Click to collapse
adb shell and then su.
now is ok.
i make a reboot.
thanks for answer.
I am glad that I helped
Bender303 said:
That's strange, i read about that there would be a separate market app for legacy but mine only had legacy.
However I did a dirty flash from Promethius, maybe something to do with that.
Sent from my LG-P920 using Tapatalk 2
Click to expand...
Click to collapse
There will be both.
Sent from my Transformer Prime TF201 using XDA Premium HD app

confusion after flashing recovery via terminal emulator (lg P500)

I AM NOOB SO PLEASE DONT BE HARSH
NOW FIRST I DOWNLOADED 2 FILES
"FLASH_IMAGE" AND "AMONRA RECOVERY 3.0.6.img"(renamed it to recovery.img) and PASTED THE FLASH_IMAGE IN /system/bin and recovery.img in root of sdcard
AFTER THAT I OPENED TERMINAL EMULATOR
I TYPED THE FOLLOWING
su
# flash_image recovery /sdcard/recovery.img
then after pressing enter it only showed me
#
NOW IM IN CONFUSION WHETHER THE RECOVERY FLASHED SUCCESFULLY OR NOT ( I DONT WANT REBOOT INTO RECOVERY WITHOUT ANY satisfaction)
so please help me
and thanks in advance
No need for flash_image to be thr.
Do 'su' then 'flash_image recovery /sdcard/recovery.img'
Sent from my LG-P500 using xda premium
allenwalker1998 said:
No need for flash_image to be thr.
Do 'su' then 'flash_image recovery /sdcard/recovery.img'
Sent from my LG-P500 using xda premium
Click to expand...
Click to collapse
but
without the flash_image it says flash_image: not found
androidisfuture said:
but
without the flash_image it says flash_image: not found
Click to expand...
Click to collapse
Okay then u place it whr it was supposed to be
Sent from my LG-P500 using xda premium
allenwalker1998 said:
Okay then u place it whr it was supposed to be
Sent from my LG-P500 using xda premium
Click to expand...
Click to collapse
sir you jave any other idea?????/
Thank you alien walker for your time
i risked and rebooted into recovery
and it pefectely worked
so i should close this thread

Categories

Resources