[Q] Any way of recovering data after doing a factory reset? - Galaxy S II Q&A, Help & Troubleshooting

A couple of weeks ago, my SGS II crashed really badly and affected my phone in that I kept getting force close messages as well as "System UIDs Inconsistent" ones plus I couldn't access the partitions within my phone in Windows Explorer even though the phone was recognised by it.
It looks as though I may need to do a factory reset which to me is going to be a pain in the ass especially where videos and MP3's are concerned.
Another problem is that even though I installed VillainROM and followed the rules to the letter concerning its installation, supposedly I didn't install the system recovery that was unique to it and which would have made things a lot easier for me.
I don't even know if there is a way to backup data from the partitions to a 16GB or bigger micro SD card within the regular system recovery or not.
If I do need to a factory reset, are there any Apps out there that will let me recover data from the internal partitions as long as I don't write over the lost data concerned? (I know there's software available for PC that does something similar with data stored on hard drives)

Well on Cutom ROM you can use Titanium Backup Pro for Backup and Restoring. On Stock ROM's even Kies would do.
Regards.

ithehappy said:
Well on Cutom ROM you can use Titanium Backup Pro for Backup and Restoring. On Stock ROM's even Kies would do.
Regards.
Click to expand...
Click to collapse
That's the irony, I actually had Titanium Backup installed on my VillainROM custom ROM and I'd even bought an upgrade to the Pro version but for some reason, it wouldn't let me upgrade to the full version even though I had a license for it that I paid for, and as a result, it wouldn't let me do a full backup without having to do it slowly.
If I did reinstall Titanium Backup and managed to get my problem sorted out, would it recover deleted data or not?

Titanium Backup would only restore what it previously backed up.
The most easy way would be to just dump your data partition into a tarball (given you have root access on your phone).
Just hop into a terminal or adb shell and do
Code:
su
busybox tar zcvf /sdcard/data.tar.gz /data
That will give you a full .tar "backup" of all the data on the internal data partition.
Restoring that to app after a wipe and reinstall can be a bit pain in the poo, but it's better than nothing - and a recovery of previous files after a wipe would at best give you the same.

HellcatDroid said:
Titanium Backup would only restore what it previously backed up.
The most easy way would be to just dump your data partition into a tarball (given you have root access on your phone).
Just hop into a terminal or adb shell and do
Code:
su
busybox tar zcvf /sdcard/data.tar.gz /data
That will give you a full .tar "backup" of all the data on the internal data partition.
Restoring that to app after a wipe and reinstall can be a bit pain in the poo, but it's better than nothing - and a recovery of previous files after a wipe would at best give you the same.
Click to expand...
Click to collapse
How do I go into a terminal or adb shell? I'm using Windows 7 if that's any help?

For Terminal install a Terminal App from the marketplace on your phone and run it directely on it.
ADB you get from the Android SDK.

HellcatDroid said:
For Terminal install a Terminal App from the marketplace on your phone and run it directely on it.
ADB you get from the Android SDK.
Click to expand...
Click to collapse
I take it that once I do the factory reset on the phone and install a Terminal App on it via Android Market, I just need to run the command that you recommend that I do and I should be able to recover the data that was on my partitions, pre factory restore?
(Apologies for asking all these questions as I'm still a newbie when it comes to Android and I'm just pissed that this happened in the first place because of the overheating that caused it to happen in the first place)

What if I select advance restore in CWM recovery and restore data? Will it affect the flashed rom?

borgmanjayce said:
I take it that once I do the factory reset on the phone and install a Terminal App on it via Android Market, I just need to run the command that you recommend that I do and I should be able to recover the data that was on my partitions, pre factory restore?
Click to expand...
Click to collapse
No, you run the command BEFORE the factory wipe and use the tarball you got to restore any data you still need.
kryptoner said:
What if I select advance restore in CWM recovery and restore data? Will it affect the flashed rom?
Click to expand...
Click to collapse
Should work too, but depending on *what* borked up the install (might be some setting/config/piece-of-data somewhere) it will be restored as well - but definitaly worth a shot and pretty much "a must" to do those backups (I do them regulary).

gillian07 said:
It is possible to restore deleted files deleted from samsung galaxy s2 android phone after factory reset, take a look at this guide: recover data after android phone factory reset
You'd better do not use the phone before you get back lost files.
Click to expand...
Click to collapse
Blair Miller said:
You can check this related atciel recover files after restore factory settings
Click to expand...
Click to collapse
No program is free without compromise. If you factory reset without backup, there is not much you can do to recover deleted files. That's why such warnings exist before reverting back to a clean state.

You can try a Recuva download the program connect as storage device and try to scan Hope it helps

ma11221 said:
You can try a Recuva download the program connect as storage device and try to scan Hope it helps
Click to expand...
Click to collapse
Recovery programs such as recuva work best on magnetic media such as pc hard drives. Flash storage on mobile phone are different as there are no moving parts, so recovery is not that easy. There is also a much higher likelihood of corruption on flash storage too when restoring deleted files, so that's why there is really no 'best' method for recovery.

How to Recover Deleted Data from Android after Factory Reset
When you perform a factory reset on Android, you will return the device to the condition it was when shipped from the factory. A factory data reset can help fix most issues that occur on Android. Any incorrect settings, glitches, bugs, viruses, or software problems on the device will be wiped clean.
But the files deleted from an Android phone aren’t actually wiped from its memory. Instead, the files are only marked as deleted and invisible. The system will write data over those files in the future. You can later use specialized data recovery tool to scan the Android memory for deleted files and try to recover them.

mendywen0322 said:
When you perform a factory reset on Android, you will return the device to the condition it was when shipped from the factory. A factory data reset can help fix most issues that occur on Android. Any incorrect settings, glitches, bugs, viruses, or software problems on the device will be wiped clean.
But the files deleted from an Android phone aren’t actually wiped from its memory. Instead, the files are only marked as deleted and invisible. The system will write data over those files in the future. You can later use specialized data recovery tool to scan the Android memory for deleted files and try to recover them.
Click to expand...
Click to collapse
Got any tips on what software?

Related

System and user apps accidentally frozen

READ AT THE END OF THIS POST FOR THE SOLUTION
I accidentally used Titanium Backup's widget to frost all system and user apps, leaving mi phone in a infinite boot animation loop. I dont have aNandroid Backup and I would really love to solve this issue without flashing.
I found at Titanium Backup's troubleshooting webpage that I could use this command with adb to solve my issue:
Code:
Type the following command (replace with /dbdata/system/packages.xml if you have a Samsung phone):
busybox sed -n 's/<package name="\([^"]\+\)".*enabled="false".*/\1/p' /data/system/packages.xml | while read PKG; do pm enable "$PKG"; done
but it just says: No such file or directory (yes, I changed /data to /dbdata as stated in the webpage)
Any idea on how to solve this issue?
Thank you!
**EDIT:
This is the way I managed to get my phone working again without having to flash or wipe:
1. Boot in recovery mode and used adb pull command to extract "packages.xml" and "packages-more-backup.xml" from /data/system/
2. Open both files with Wordpad and replaced all protection="2" or "3" lines to protection="1".
3. Also, and very important, replaced all enabled="false" lines to enabled="true"
4. Boot in recovery again and used adb to delete old "packages.xml" and "packages-more-backup.xml" files and push the new ones.
5. Reboot and Voila!
6. Boot once again in recovery mode and fix permissions to avoid any problem.
Hope that this could be usefull to someone else having this horrible problem.
Thank you all!
Checked for that file on my phone, it doesn't exist in /dbdata/system/, but it does in /data/system/
It's probably fixable from the command line with Linux but that is over my head, one option would be to Odin or heimdel back to stock, and start from scratch. You might need a jig to get into dlmode.
Sent from my SAMSUNG-SGH-I777 using xda premium
nitox.n2o said:
Checked for that file on my phone, it doesn't exist in /dbdata/system/, but it does in /data/system/
Click to expand...
Click to collapse
I tried with /data too but same result.
shadow65781 said:
It's probably fixable from the command line with Linux but that is over my head, one option would be to Odin or heimdel back to stock, and start from scratch. You might need a jig to get into dlmode.
Sent from my SAMSUNG-SGH-I777 using xda premium
Click to expand...
Click to collapse
I know I could do that but I would really like to restore my system as it was
Help please
I wonder what would happen if you removed the app (its apk) via adb from /data/app. Would it retain the freeze settings? Something to consider trying.
This happened to me. I reflashed the ROM without wiping and all was back to normal
Sent from my FrankenTAB using Tapatalk
Simba501 said:
I wonder what would happen if you removed the app (its apk) via adb from /data/app. Would it retain the freeze settings? Something to consider trying.
Click to expand...
Click to collapse
Pretty sure that's not gonna work because the frozen apps settings are at packages.xml file, but I can't access it I don't know why
jhermit said:
This happened to me. I reflashed the ROM without wiping and all was back to normal
Sent from my FrankenTAB using Tapatalk
Click to expand...
Click to collapse
I tried doing that right now but it didn't worked
I got a little too punchy with titanium on my 3 year old original Galaxy tab 7 and froze a samsung system app. Got irreversibly stuck is soft brickland - Tried various methods before giving up and hitting the wipe and reset to factory restore in the system recovery mode. Everything was backed up except recent photos, so it was more annoying than the end of the world.
Odd thing was when it reset to factory, it appeared to do just that, yet when I plugged it into PC and mounted it - the memory was full and all my files and app data files were there - untouched. The apps themselves have gone except one - Superuser is still there, Does Superuser somehow override being reset? and act as a guardian of your data in the event of reset?
Odd. I was expecting to run some file recovery software to a salvage what i could, but viola - it was all there.
shokuchi said:
I got a little too punchy with titanium on my 3 year old original Galaxy tab 7 and froze a samsung system app. Got irreversibly stuck is soft brickland - Tried various methods before giving up and hitting the wipe and reset to factory restore in the system recovery mode. Everything was backed up except recent photos, so it was more annoying than the end of the world.
Odd thing was when it reset to factory, it appeared to do just that, yet when I plugged it into PC and mounted it - the memory was full and all my files and app data files were there - untouched. The apps themselves have gone except one - Superuser is still there, Does Superuser somehow override being reset? and act as a guardian of your data in the event of reset?
Odd. I was expecting to run some file recovery software to a salvage what i could, but viola - it was all there.
Click to expand...
Click to collapse
Wrong forum dude
Sent from my Zanpakuto using Getsuga Tensho!
<deleted>
ZIP for unfreezing apps
For those, who accidentally frozen important system app: here quick solution without factory reset, reflashing and ADB
It automatically edits files as described in first post.
You should have unlocked bootloader. If no, ZIP useless because unlocking wipes all data.
Download both ZIP's and just flash them via custom recovery (TWRP / CWM)
If first throws error try second and vice versa. 2nd with mark "New" contains newer updater-binary that must be compatible with recent TWRP.
Then all apps will be unfrozen, so phone will boot.
Fix compatible with all Android versions.
Note: also you can somehow (ADB or filemanager in TWRP) delete file /data/system/0/package-restrictions.xml
More correct to edit that file which ZIP actually do, but deleting not harmful too.
tags: unfroze apps, auto-unfroze, defrost apps, unfreeze apps, 5596
Bonoboo said:
For those, who accidentally frozen system app there is quicker solution without factory reset and ADB.
It automatically edits files as described in first post.
Just flash this ZIP through recovery and all apps will be unfrozen.
Compatible with all Android versions.
Click to expand...
Click to collapse
THANKS MAN!! i just signed up to say thanks! you just saved my life :highfive:
Bonoboo said:
For those, who accidentally frozen system app here quicker solution without factory reset and ADB
It automatically edits files as described in first post.
Just flash this ZIP through recovery and all apps will be unfrozen, so phone will boot.
Compatible with all Android versions.
tags: unfroze apps, auto-unfroze
Click to expand...
Click to collapse
Thanks very much for the zip. It worked great
Same Problem
Does anyone have an updated version of that zip? I also froze an app linked to the device and it won't boot, even after factory resetting it. Tried running the zip on my t-mobile GS4 (probably newer than that zip) from the SD card in recovery mode, however it didn't unfreeze it.
Any help greatly appreciated!
pianoplayer55 said:
Does anyone have an updated version of that zip?
I also froze an app linked to the device and it won't boot, even after factory resetting it.
Click to expand...
Click to collapse
1. To flash that ZIP you need have custom recovery (CWM or TWRP), not stock.
No update needed, it still works in this case.
2. That strange. Maybe you not really performed reset?
Double check all and try again.
Bonoboo said:
1. To flash that ZIP you need have custom recovery (CWM or TWRP), not stock.
No update needed, it still works in this case.
2. That strange. Maybe you not really performed reset?
Double check all and try again.
Click to expand...
Click to collapse
Yup, unfortunately I did select wipe data on the recovery screen. I am also stuck in an infinite boot up loop and cannot access the phone to install any apps. How can I use a custom recovery to run the zip file if i cannot access the phone? Instructions much appreciated. Thanks again.
pianoplayer55 said:
How can I use a custom recovery to run the zip file if i cannot access the phone?
Click to expand...
Click to collapse
ZIP – it's not app.
Again, you need to install custom recovery.
Here link to TWRP and how install it via Odin on PC.
You need place that ZIP on sdcard.
Enter in recovery (don't know how on your model), select Install > find ZIP > confirm > reboot,
Bonoboo said:
ZIP – it's not app.
Again, you need to install custom recovery.
You need place that ZIP on sdcard.
Enter in recovery (don't know how on your model), select Install > find ZIP > confirm > reboot,
Click to expand...
Click to collapse
Downloaded TWRP with Odin and ran custom recovery without a change after the zip (this must have been a deeper-rooted problem in the OS itself), however in the meantime I formatted the system partition, removing the operating system. Installed Kies and ran the update. It reinstalled the OS and I'm good now. Most stuff was backed up anyways. Thanks guys for your time :good::good:
Which apk is the culprit?
Man, I wish I'd found this thread before restoring my phones internal ROM. Had it rooted and set up in every way I like except removing bloatware.
Using TB, I froze a system apk that shut down my System UI and sent the phone bootlooping. What I'm trying to determine is WHICH apk(s) I froze that caused this. I thought I had researched each one that didn't seem obvious, but I musta missed one or one of the 'obvious' ones wasn't so obvious.

[Q] What actually android wipedata/reset means ?

I am really confused with this. What actually android wipedata/reset means ?. Is there any problem if i select wipe data factory reset...? if i select this option, is there any chance of losing my internal memory datas like messages, contacts, etc ?
sareeshmnair said:
I am really confused with this. What actually android wipedata/reset means ?. Is there any problem if i select wipe data factory reset...? if i select this option, is there any chance of losing my internal memory datas like messages, contacts, etc ?
Click to expand...
Click to collapse
The wipe data and factory reset option will wipe the /data partition which includes application data, any apps you've downloaded, pictures, music, messages, and contacts that are not stored on your sd-card. In addition to wiping the /data partition it also wipes the /cache partition which mostly contains your apps temporary files, and other system related temporary files. Your contacts can be backed up to your Google account, messages can be backed up with SMS Backup +, and for your other data I would recommend taking a look at My Backup it doesn't require root, if you are rooted Titanium Backup is a very handy tool for backing up your device.
help me as you can please
My phone it doesn't work already and and i don't want to lose any of my data because its really important to me and i didn't do the back up before …..what can i do ? …… pleas help me
problem
meshalSM said:
My phone it doesn't work already and and i don't want to lose any of my data because its really important to me and i didn't do the back up before …..what can i do ? …… pleas help me
Click to expand...
Click to collapse
problem???
gohel.vishal said:
problem???
Click to expand...
Click to collapse
i have the cyanogen room and it was working well…and then,they create a new update for the room…when I'm install it .. the playstore it doesn't work anymore .. so i tried to return to the old version by the sitting > about the phone … when i did it .. the phone restart it self and sticking in the welcome screen for the cyanogenMod…and i don't have any back up before…and i have a lot important emails and numbers that i don't want to lose it what ever it happens…..please help me with this brother
meshalSM said:
i have the cyanogen room and it was working well…and then,they create a new update for the room…when I'm install it .. the playstore it doesn't work anymore .. so i tried to return to the old version by the sitting > about the phone … when i did it .. the phone restart it self and sticking in the welcome screen for the cyanogenMod…and i don't have any back up before…and i have a lot important emails and numbers that i don't want to lose it what ever it happens…..please help me with this brother
Click to expand...
Click to collapse
Just to clarify do you mean it's gets stuck on the Cyanogenmod Bootanimation or the Setup Wizard welcome screen when you first setup the phone after wiping it or installing a new ROM? Do you have adb debugging enabled (Under Developer Options in System Settings)? Because if you do then you can use that to pull files from your device. Otherwise what you try doing is booting into recovery and trying ADB through recovery to see if you can access it that way, another suggestion would be in recovery mode to do a NANDROID backup of your current setup and then transfer the backup to your computer, extract the userdata.img from the NANDROID backup, and then use Linux to view the content of the userdata.img file (This would be a decent place to start). Otherwise I'm afraid you may be out of luck.

[Q] updating rooted samsung galaxy s3 to 4.3

ok so basically i want to find a way to get to 4.3 either rooted or unrooted, my problem is that i have pretty bad ocd and one of my major major problems with that disorder is my tech devices, i will most likely have an anxsiety attack or 2 if i have to set up my phone from scratch and i will spend hours making it look exactly the same. anyway, i want to know:
1:how to update rooted gs3 Gt-i9305t 4g/lte model without loosing data (if possible )
2: update to 4.3 and un root without loosing data (im sure thats impossible )
i would really appreciate the help as i cannot find anyone looking for the same help as me (kinda strange how no one cares about there data at all, but meh)
also on a side note, i have the problem with my s3 where any sd card i put into the machine will eventually kill itself and never work again as far as i know, it has killed 3 32gb sd cards now and its starting to piss me off to the point where i am no longer using an sd card at all. why does the phone do this and is there any way to fix it? either software wise or hard wear wise? thanks !!! :fingers-crossed:
4.3 source code has only just been released. 4.3 roms are not fully functional and have bugs. There are no official releases so they are all "rooted".
You really do need to wipe when making version updates. Theres no way around this.
Stick with what you've got.
that just sucks.
rootSU said:
4.3 source code has only just been released. 4.3 roms are not fully functional and have bugs. There are no official releases so they are all "rooted".
You really do need to wipe when making version updates. Theres no way around this.
Stick with what you've got.
Click to expand...
Click to collapse
that honestly sucks so much, thanks for the info though.
hey another quick question, is there a way to so a full backup, like im talking FULL, like down to the point of where ur apps are placed and all there data, like apple devices have through itunes?? (restore from backup option) cus if so then i dont mind wiping at all, i just hate apple so i will never go back to one of there piece of **** devices again (i like features with my shiny brick) but yeah anything like that? or can kies do that?
i'm using temasek 4.3 preview 3 atm, you should check it out since developer is extremely helpful
and he updates regularly (which is important)
There are a number of ways to keep your data. Including ones that will let you change the ROM and still have your data. Titanium Backup - not sure if it is only Pro version but the one I have lets me create a backup on the extSDcard so I can flash it in a new ROM and restore all my apps and data straight off. SMS Backup and restore and Call Backup and restore both save out your data to the extSDcard so you can bring them back. I used to use My Backup Root as well but it ceased to work on the last update so I nuked it.
Add in a nandroid backup on something like Philz Recovery (where you can do an Advanced Restore from External SDCard and bring back just parts of your current ROM) and you can always get back to your look & feel in any new ROM.
The one thing I ahve NOT found a solution for is replacing my widgets back on the screens they are on - I run 7 screens and it pisses me off a full recovery in something like Titanium doesn't restore my widgets. The only way it happens is a full nandroid restore but that nukes the new ROM I have just installed so that's not an option.
I run Purelook HD as my 1st ROM, GoogyMax kernel and SlimBean as my 2nd ROM. I can nuke either or both and be back to my set up (including widgets) in about 45 minutes.
Journyman16 said:
There are a number of ways to keep your data. Including ones that will let you change the ROM and still have your data. Titanium Backup - not sure if it is only Pro version but the one I have lets me create a backup on the extSDcard so I can flash it in a new ROM and restore all my apps and data straight off. SMS Backup and restore and Call Backup and restore both save out your data to the extSDcard so you can bring them back. I used to use My Backup Root as well but it ceased to work on the last update so I nuked it.
Add in a nandroid backup on something like Philz Recovery (where you can do an Advanced Restore from External SDCard and bring back just parts of your current ROM and you can always get back to your look & feel in any new ROM.
Click to expand...
Click to collapse
Lets dissect this a little.
A Nandroid backup will take a snapshot of your phone. If you flash something wrong, it can be used to restore your data / settings and rom exactly how it was. This will not help restore your data and settings on a new ROM where you had to perform a wipe. (You have to perform a wipe to prevent data and settings incompatibilities with the new ROM that will cause problems.)
Titanium backup is great. However, if you had to perform a wipe, you cannot simply restore everything using Titanium. This is because you will be restoring the incompatabilities (System data) and restoring the problems (negating the point of the wipe in the first place). You can restore user apps and data with titanium but there will be an element of manually setting all your rom settings.
OP - Please read the "Read before rooting" thread in my signature for more info.
**** that
screw it, ill just stay on 4.2.1 i mostly want it cus they (****ING FINALLY ) partially fixed the setting wallpaper problems so you can get at least most of the photo in the screen now, i have it on my nexus 7 but now cant get it on my phone : / screw ocd, it has plagued me since i was little
adex9 said:
screw it, ill just stay on 4.2.1 i mostly want it cus they (****ING FINALLY ) partially fixed the setting wallpaper problems so you can get at least most of the photo in the screen now, i have it on my nexus 7 but now cant get it on my phone : / screw ocd, it has plagued me since i was little
Click to expand...
Click to collapse
We all spend hours making it look exactly the same. It's annoying but essential.
rootSU said:
Lets dissect this a little.
A Nandroid backup will take a snapshot of your phone. If you flash something wrong, it can be used to restore your data / settings and rom exactly how it was. This will not help restore your data and settings on a new ROM where you had to perform a wipe. (You have to perform a wipe to prevent data and settings incompatibilities with the new ROM that will cause problems.)
Titanium backup is great. However, if you had to perform a wipe, you cannot simply restore everything using Titanium. This is because you will be restoring the incompatabilities (System data) and restoring the problems (negating the point of the wipe in the first place). You can restore user apps and data with titanium but there will be an element of manually setting all your rom settings.
Click to expand...
Click to collapse
The Advanced Restore in Philz lets you restore Data. The choices are, Restore Boot, System (+or- reload) Data, Cache and sd ext. The Data restored my latest personal stuff from the BU I tried just before a new ROM experiment. So not all Restores are the same. You don't have to bring it ALL back from a nandroid.
Journyman16 said:
The Advanced Restore in Philz lets you restore Data. The choices are, Restore Boot, System (+or- reload) Data, Cache and sd ext. The Data restored my latest personal stuff from the BU I tried just before a new ROM experiment. So not all Restores are the same. You don't have to bring it ALL back from a nandroid.
Click to expand...
Click to collapse
@Journyman16
You seem to be missing my point.
If you can restore just data via recovery (which you can) then you didn't need to wipe in the first place.
ROM goes in /system. We all know that. Our apps go in /data/app. We all know that. Our data for our apps goes in /data/data but what some may NOT know is that /data/data contains all your system data too. When you set a ring tone or wallpaper, its in /data/data.
If you go from 1 ROM to another, you may not have to wipe. Or you may HAVE to wipe. It depends if there is incompatible system data in /data/data or not.
When you do wipe, you wipe /data/* (includes /data/data). If you nandroid restore /data and your phone works perfectly, you didn't need to wipe. So my point remains.
If you HAD to wipe, you cannot simply restore data via recovery and have a fully working phone.
rootSU said:
@Journyman16
You seem to be missing my point.
If you can restore just data via recovery (which you can) then you didn't need to wipe in the first place.
ROM goes in /system. We all know that. Our apps go in /data/app. We all know that. Our data for our apps goes in /data/data but what some may NOT know is that /data/data contains all your system data too. When you set a ring tone or wallpaper, its in /data/data.
If you go from 1 ROM to another, you may not have to wipe. Or you may HAVE to wipe. It depends if there is incompatible system data in /data/data or not.
When you do wipe, you wipe /data/* (includes /data/data). If you nandroid restore /data and your phone works perfectly, you didn't need to wipe. So my point remains.
If you HAD to wipe, you cannot simply restore data via recovery and have a fully working phone.
Click to expand...
Click to collapse
Thanks for the explanation - that helps me understand better what goes on. Would that explain perhaps why, after some Restores, I had to run Fix Permissions to stop the FC's?
Journyman16 said:
Thanks for the explanation - that helps me understand better what goes on. Would that explain perhaps why, after some Restores, I had to run Fix Permissions to stop the FC's?
Click to expand...
Click to collapse
Yep, it could do.
Any updates (I am facing the same problem)?
BTW, OTA updates seem to be able to keep most if not all settings. How they manage to do this?
moshepupkin said:
Any updates (I am facing the same problem)?
BTW, OTA updates seem to be able to keep most if not all settings. How they manage to do this?
Click to expand...
Click to collapse
Same here. I've been looking for the exact method to do this, but haven't had any luck so far.
I ended up using Kies to update to 4.3 - it does not check root status.
moshepupkin said:
I ended up using Kies to update to 4.3 - it does not check root status.
Click to expand...
Click to collapse
Hmm, it says that my current firmware is the latest version, rather than 4.3. Is there anything special you're supposed to do?
AriaOfSorrow said:
Hmm, it says that my current firmware is the latest version, rather than 4.3. Is there anything special you're supposed to do?
Click to expand...
Click to collapse
Who says there is a 4.3 for your phone ???
JJEgan said:
Who says there is a 4.3 for your phone ???
Click to expand...
Click to collapse
Well, let's see... there's everyone I know that also has this phone. People online that say they have this phone. Web sites saying that this phone has officially received 4.3. The phone itself saying there is an update for the firmware. So, basically everyone/thing except the Kies program.
Who says their is an update for your phone repeat your phone not some other guys phone and as you failed to give any firmware details impossible to check .
Kies/ Samsung says not for your phone yet.
Contact your vendor .
See multiple identical posts .
Flash stock rom through Odin from sammobile .com
JJEgan said:
Who says their is an update for your phone repeat your phone not some other guys phone and as you failed to give any firmware details impossible to check .
Kies/ Samsung says not for your phone yet.
Contact your vendor .
See multiple identical posts .
Flash stock rom through Odin from sammobile .com
Click to expand...
Click to collapse
I already told you who said there is an update for my phone. Unless my phone is disguised as some one of a kind phone, I'm supposed to be able to update to 4.3.

Backup images from the phone

Respected by mistake, I reset the phone to factory settings.
So on that occasion I lost pictures, videos, viber pictures, messages and sms.
So I'm wondering how I can get back to my phone or computer.
And is it possible to set the phone as a usb device or sd card so that all the data on the computer is restored to the software (I managed to recover the data from the deleted usb from the usb device using recuva applications and the like)
Thanks
sndelija said:
Respected by mistake, I reset the phone to factory settings.
So on that occasion I lost pictures, videos, viber pictures, messages and sms.
So I'm wondering how I can get back to my phone or computer.
And is it possible to set the phone as a usb device or sd card so that all the data on the computer is restored to the software (I managed to recover the data from the deleted usb from the usb device using recuva applications and the like)
Thanks
Click to expand...
Click to collapse
What you intend to achieve requires 1. the phone is rooted and 2. USB-Debugging is successfully enabled. Both requirements fulfilled?
jwoegerbauer said:
What you intend to achieve requires 1. the phone is rooted and 2. USB-Debugging is successfully enabled. Both requirements fulfilled?
Click to expand...
Click to collapse
The phone is rooted once but I'm not sure if it's done well.
So I should root it and then try with some apps to find the lost files in the phone?
sndelija said:
The phone is rooted once but I'm not sure if it's done well.
So I should root it and then try with some apps to find the lost files in the phone?
Click to expand...
Click to collapse
I apologize: Device must NOT be rooted.
Carrying out a Factory Reset all your device data get wiped out, means you end up losing all your important user data before it is backed up. However, Factory Reset does not affect the external SD-card in any way. So, even if you have the SD card inserted with videos, images, documents and any other personal information in the Android device while carrying out a Factory Reset, everything will remain safe and intact.
Factory Reset is neither the best option anyway.
As long as after the Factory Reset no apps etc.pp. got installed on Android device, there is a chance you can recover deleted user data - but only if the related storage memory didn't get overwritten in between. So instead of recovering deleted files from Android without computer by an Android file recovery app, which could potentially overwrite the deleted files when the app is installed, you have a better chance to recover the deleted files with a desktop Android data recovery application on your computer. Dozens of those Windows applications are available, simply do a Google search for those.
I tried the root phone but failed.
Does anyone know how to root this model?
Thank you

How to recover deleted .zip from Android devices

Hello All,
I deleted a zip file from my android device(not rooted)., And I need to recover the zip file which contains photos approx 150Mb.
Is there a possible way to recover it., Even paid tools/apps I am ready to try.
Just need to know a valid method to recover it. Please help
Thanks.
siadathali said:
Hello All,
I deleted a zip file from my android device(not rooted)., And I need to recover the zip file which contains photos approx 150Mb.
Is there a possible way to recover it., Even paid tools/apps I am ready to try.
Just need to know a valid method to recover it. Please help
Thanks.
Click to expand...
Click to collapse
Without root? Probably not.
Sent from my SM-S767VL using Tapatalk
Android OS doesn't have a Recycle Bin as that's the case with for example Windows OS, unless you install such an extension.
jwoegerbauer said:
Android OS doesn't have a Recycle Bin as that's the case with for example Windows OS, unless you install such an extension.
Click to expand...
Click to collapse
That is true, but, deleted data doesn't truly get wiped/removed unless the data is overwritten. When a file is deleted, it doesn't get deleted, it just gets marked by the system to be ignored until the next time the system needs to write data, at such times, it will write the new data over the data that has been marked.
Data recovery software does have the ability to find this data that has been marked for deletion and recover that data. But it requires root.
Sent from my SM-S767VL using Tapatalk
Droidriven said:
Data recovery software does have the ability to find this data that has been marked for deletion and recover that data. But it requires root.
Click to expand...
Click to collapse
Most of the recently released higher-end Android devices running Android Lollipop or higher come with data encryption enabled out-of-the-box - in order to be more resistant to government snooping.
IMO even if it may be true that a data recovery software can find and recover deleted data, these data are encrypted and therefore without any use of all, unless you have appropriate forensic tools.
If I'm mistaken then please tell me the data recovery software that can bring back deleted data in decrypted way.
Data recovery software works for you, but all require the phone to be rooted, so you will need to do that first to your device. With root access, it can scan the files that would normally be inaccessible.
It can be recovered back with some data recovery software?If the.zip is too large,i tink it will be difficult to recover back.
Droidriven said:
That is true, but, deleted data doesn't truly get wiped/removed unless the data is overwritten. When a file is deleted, it doesn't get deleted, it just gets marked by the system to be ignored until the next time the system needs to write data, at such times, it will write the new data tover the data that has been marked.
Data recovery software does have the ability to find this data that has been marked for deletion and recover that data. But it requires root.
Sent from my SM-S767VL using Tapatalk
Click to expand...
Click to collapse
I Do not mind rooting now, but !! my understanding is that if I root the device now., It will wipe off all my data in my phone, coz rooting the phone is another way of flashing?? It will be more hard to recover file if my phone is wiped out.
Saenyu67 said:
It can be recovered back with some data recovery software?If the.zip is too large,i tink it will be difficult to recover back.
Click to expand...
Click to collapse
My file is hardly 150MB zip file. Not of huge size.
siadathali said:
I Do not mind rooting now, but !! my understanding is that if I root the device now., It will wipe off all my data in my phone, coz rooting the phone is another way of flashing?? It will be more hard to recover file if my phone is wiped out.
Click to expand...
Click to collapse
Yes, but, only if the rooting method requires unlocking your bootloader because unlocking the bootloader formats the data partition. But, if you can find a way of rooting without having to unlock the bootloader or flashing a custom recovery, it won't format your data partition.
Honestly though, your chances of rooting without unlocking bootloader or flashing custom recovery , aren't very good. To do so would require finding an app or PC program that is a "universal rooting tool" and it would require the tool having an exploit that works on your device.
Or, you could do a Google search for:
"Recover data android no root"
Then try the various tools and methods that finds, if you can find videos in that search, it may help you further.
Sent from my SM-S767VL using Tapatalk

Categories

Resources