Can I backup Contacts/SMS manually? - Galaxy S III Q&A, Help & Troubleshooting

Hi,
What is the system contact file that holds all contacts?
I mean the DB or the sql file....
Lets say my LCD is cracked and I cant see anything, and I want to use a file browser for coping the contacts file.
Anybody knows? Thanks

shakta said:
Hi,
What is the system contact file that holds all contacts?
I mean the DB or the sql file....
Lets say my LCD is cracked and I cant see anything, and I want to use a file browser for coping the contacts file.
Anybody knows? Thanks
Click to expand...
Click to collapse
I doubt that you could see the system partition from your computer, but I might be wrong
Sent from my GT-I9300 using xda app-developers app

3 questions about it:
1. What the path of contacts file in system partition?
2. If I am rooted can I see SYS partition?
3. If I am NOT rooted can I see SYS partition?
thanks

it's in /data and you can use adb to pull the info.
/data/data/com.android.providers.contacts/databases/contacts2.db
/data/data/com.android.providers.telephony/databases/mmssms.db
you MUST run a custom recovery or be rooted

rootSU said:
it's in /data and you can use adb to pull the info.
/data/data/com.android.providers.contacts/databases/contacts2.db
/data/data/com.android.providers.telephony/databases/mmssms.db
you MUST run a custom recovery or be rooted
Click to expand...
Click to collapse
Thanks!
Except ADB, can I use file browser? I must be rooted, right?
thanks

shakta said:
Thanks!
Except ADB, can I use file browser? I must be rooted, right?
thanks
Click to expand...
Click to collapse
No. ADB is your only option.
Read General > Sticky roll-up thread > S3 storage (Data loss recovery) for more info on what to do. It has step by step

rootSU said:
No. ADB is your only option.
Read General > Sticky roll-up thread > S3 storage (Data loss recovery) for more info on what to do. It has step by step
Click to expand...
Click to collapse
Thanks!

nowk said:
There're many android data transfer apps could help, it could detect your phone data on computer, you can use it to backup everythig from your phone to computer, including text messages, contacts, photos and so on.
how to transfer contacts from android to computer
Click to expand...
Click to collapse
And the "GOLDEN SHOVEL" goes for u for bringing up so old thread (which was solved anyway)

Related

[Q] How can I backup efs folder ?

I know this question is common but I read this thread
http://forum.xda-developers.com/showthread.php?t=1068193
and he asked me to learn busybox commands then I read this thread which offers an app to backup this folder
http://forum.xda-developers.com/showthread.php?t=1138873
My question :Is there anyone who tried this app to backup efs folder on GSII ?
and does this app need rooted phone ?
Thanks
The commands are in the first link you posted, and yes you need a rooted phone.
I know but I need a way without busybox as It's very long
and I wanted to know anyone used the app which I posted on GSII
Just install the cf-root kernel, it has busybox built in.
Never used the app since it isn't needed, typing out a command isn't that trivial.
http://www.appbrain.com/app/nitrality/com.nfye.insanity.toolbox
jje
peachpuff said:
Just install the cf-root kernel, it has busybox built in.
Never used the app since it isn't needed, typing out a command isn't that trivial.
Click to expand...
Click to collapse
I know but the dev said " you should learn busybox commands otherwise you will lose your phone "
Im just going to step away from this thread...
JJEgan said:
jje
Click to expand...
Click to collapse
Thanks but did you try this app on GSII
mohamdyoon said:
I know this question is common but I read this thread
http://forum.xda-developers.com/showthread.php?t=1068193
and he asked me to learn busybox commands then I read this thread which offers an app to backup this folder
http://forum.xda-developers.com/showthread.php?t=1138873
My question :Is there anyone who tried this app to backup efs folder on GSII ?
and does this app need rooted phone ?
Thanks
Click to expand...
Click to collapse
It's not hard, i just copy/pasted the commands from the first thread, but i know a bit about linux command line commands.
If you typo you could break stuff, that's life.
Or just try the app, maybe read the thread to see if other people have had it work for them.
The only risk free thing you can do with your phone is turn it off and put it back in the box
Sent from my GT-I9100 using XDA Premium App
veyka said:
It's not hard, i just copy/pasted the commands from the first thread, but i know a bit about linux command line commands.
If you typo you could break stuff, that's life.
Or just try the app, maybe read the thread to see if other people have had it work for them.
The only risk free thing you can do with your phone is turn it off and put it back in the box
Sent from my GT-I9100 using XDA Premium App
Click to expand...
Click to collapse
thanks for your help I really want to know a bit about these commands but I can't know how ? the topic give url to learn all commands not a bit of them
If you can tell me how I will be grateful
but as you know a bit about linux command you need to change anything in the commands or you just copied it ?
Thanks again for trying help me
If you are rooted you can just install galaxy s unlock by helroz and it has an option to just back up for /efs folder before you unlock. just select the backup option and don't do the unlock. No command line stuff required. The efs will be backed up to your phone storage.
mohamdyoon said:
thanks for your help I really want to know a bit about these commands but I can't know how ? the topic give url to learn all commands not a bit of them
If you can tell me how I will be grateful
but as you know a bit about linux command you need to change anything in the commands or you just copied it ?
Thanks again for trying help me
Click to expand...
Click to collapse
Code:
su
busybox tar zcvf /sdcard/efs/efs-backup.tar.gz /efs
The tar command with zcvf takes the input, in this case the efs folder and compresses it into a file in the output location, in this case on the internal sd card, while maintaining unix permissions, important for if you need to restore, this will make a small file.
Code:
su
cat /dev/block/mmcblk0p1 > /sdcard/efs/efs_dev-block-mmcblk0p1.img
Su gains root
Cat means catalog aka copy contents of what you point it at, in this case you are copying the whole partition where the efs folder sits.
In unix terms a folder can sit on any partition and be mounted into any point in the file system, just because a folder sits under "/" which is the root directory doesn't mean it's on the same partition, hard drive, or bit of flash memory.
We dump the whole partition so that if something goes wrong you can flash it back, i know heimdall which is an alternative flashing program can flash back different parts of the rom.
It's best to have both these backups to make sure and to give you different recovery options, flash via a program for the img or copying over the contents in the case of the tar file.
I hope this helps
Sent from my GT-I9100 using XDA Premium App
mohamdyoon said:
thanks for your help I really want to know a bit about these commands but I can't know how ? the topic give url to learn all commands not a bit of them
If you can tell me how I will be grateful
but as you know a bit about linux command you need to change anything in the commands or you just copied it ?
Thanks again for trying help me
Click to expand...
Click to collapse
Just download an app called nitrality in the market.
Sent from my GT-I9003 using XDA Premium App
veyka, are you even sure that he knows what ADB is?
LiFE1688 said:
veyka, are you even sure that he knows what ADB is?
Click to expand...
Click to collapse
Nope, but you can do it via a terminal editor on the phone.
It's just a copy/paste or you can just use the apps mentioned.
Sent from my GT-I9100 using XDA Premium App
veyka said:
Nope, but you can do it via a terminal editor on the phone.
It's just a copy/paste or you can just use the apps mentioned.
Sent from my GT-I9100 using XDA Premium App
Click to expand...
Click to collapse
Thanks guys and special thank for veyka
first: I will root my phone via cf-root
second : I will try the app mentioned
Or
I will make it by busybox commands
For LiFE1688 : I read about ADB but I prefer to do it via a teminal editor
Thanks for all I will try and tell you
I'm going to ask now what should I do to restore efs folder?
In the case of changing my IMEI
mohamdyoon said:
I'm going to ask now what should I do to restore efs folder?
In the case of changing my IMEI
Click to expand...
Click to collapse
To restore you can copy the contents of the tar file you made over the EFS folder, or if you ended up with an img flash it via Heimdall
ps dont share your EFS folder backup, as someone could use it to clone your phone
Thanks guys

Unknown use of System Storage (Device Memory). Pics inside.

So I was trying to install an update to an app and then it said that I didn't have enough space?!?! I don't have a lot of apps and I don't have anything special on my phone. But somehow I'm running out of System Storage (Device Memory) space?!?!
Attached are some screenshots. I've been trying to find how to view the system storage contents or find its path but haven't found anything useful. What is going on with my storage? What is using so much space?
Thanks!
kuckimonster said:
So I was trying to install an update to an app and then it said that I didn't have enough space?!?! I don't have a lot of apps and I don't have anything special on my phone. But somehow I'm running out of System Storage (Device Memory) space?!?!
Attached are some screenshots. I've been trying to find how to view the system storage contents or find its path but haven't found anything useful. What is going on with my storage? What is using so much space?
Thanks!
Click to expand...
Click to collapse
Could be a wifi dump file... but I was under the impression that was an issue isolated to a specific firmware release on I9100G model phones only. And your screenshots look like ICS... (which is not available on G model phones yet)
What model phone do you have, and what version of firmware or ROM are you running?
Thanks for your reply. I have a GT-I9100 and am running ICS 4.0.3 XXLPB.
kuckimonster said:
Thanks for your reply. I have a GT-I9100 and am running ICS 4.0.3 XXLPB.
Click to expand...
Click to collapse
Hmm... do you have root? It may be worth checking to see if you have a file named something like "dumpstate_sys_WIFI_OFF_xxxxxxxxx_error.log.txt" that's pretty big in your /data folder.
Checked my phone, Applications take up only 158 MB.
You probably have some heavy games/multimedia applications installed. Otherwise, I cannot understand how your Applications take up 434 MB. (But even Google Play application size is limited by 50 MB) +To that, additional data storage by these applications, and it is sufficient to fill up your phone.
Perhaps, you should try to install/move some of your programs to SDCard.
If you have root and busybox, from terminal,
"cd /data"
"du -hs *"
will display disk usage by files/folders. find which files/folders use most storage, report here.
ctomgee said:
Hmm... do you have root? It may be worth checking to see if you have a file named something like "dumpstate_sys_WIFI_OFF_xxxxxxxxx_error.log.txt" that's pretty big in your /data folder.
Click to expand...
Click to collapse
.
Can we deleting this logs???it's safe ?
Sent from my GT-I9100G using xda premium
mohannad072 said:
.
Can we deleting this logs???it's safe ?
Sent from my GT-I9100G using xda premium
Click to expand...
Click to collapse
Yes, it's safe. It's just a log file. In fact, the workaround to "fix" this issue essentially keeps this file from being created.
ctomgee said:
Yes, it's safe. It's just a log file. In fact, the workaround to "fix" this issue essentially keeps this file from being created.
Click to expand...
Click to collapse
Wtf ????from 728mb free to 1.7free??? Big thanks bro ......big thanks ...wish can i press the thanks botton million time for u :thumbup:
Sent from my GT-I9100G using xda premium
mohannad072 said:
Wtf ????from 728mb free to 1.7free??? Big thanks bro ......big thanks ...wish can i press the thanks botton million time for u :thumbup:
Sent from my GT-I9100G using xda premium
Click to expand...
Click to collapse
See this thread (post 10, specifically) for the "workaround" to keep the file from being generated in the first place.
It's not my solution, I'm just linking to it.
"32K com.keramidas.TitaniumBackup
32K flixster"
straight from Terminal. That's all there is in the data folder. I checked in Finder too...
Using an app to sort things by size, the biggest thing is a ClockWorkMod backup but that's over 2 GB so I assume that's not in the Device Memory/System Storage place. Anyways here's the path:
"/clockworkmod/backup/2012-05-05.12.04.32/data.ext4.tar" 1.69 GB and
"/clockworkmod/backup/2012-05-05.12.04.32/system.ext4.tar" 467 MB
The next biggest culprit is:
"/DCIM/.thumbnails/.thumbdata3--1967290299" which is a whopping 274 MB.
Thanks again for all your replies.
kuckimonster said:
"32K com.keramidas.TitaniumBackup
32K flixster"
straight from Terminal. That's all there is in the data folder. I checked in Finder too...
Click to expand...
Click to collapse
That looks like you're looking in the wrong data folder. If you're going through the "My Files" app, then the data folder you looked in was actually /sdcard/data. Which is not the same as /data.
Are you rooted? You need root access to browse the /data folder, and you'll need a different file explorer than "My Files", like Root Explorer.
---------- Post added at 03:02 PM ---------- Previous post was at 03:00 PM ----------
kuckimonster said:
Using an app to sort things by size, the biggest thing is a ClockWorkMod backup but that's over 2 GB so I assume that's not in the Device Memory/System Storage place. Anyways here's the path:
"/clockworkmod/backup/2012-05-05.12.04.32/data.ext4.tar" 1.69 GB and
"/clockworkmod/backup/2012-05-05.12.04.32/system.ext4.tar" 467 MB
The next biggest culprit is:
"/DCIM/.thumbnails/.thumbdata3--1967290299" which is a whopping 274 MB.
Thanks again for all your replies.
Click to expand...
Click to collapse
Again, these are children of the /sdcard folder. Which is on a separate partition from the "system storage". So you are not looking in the right place. I'm betting you're not rooted, either.
Yes, I am rooted (little yellow hazard sign at boot up and CWM and Superuser Apps).
I don't know how to access the system storage partition then... I'm certainly no pro in the Android world though...
kuckimonster said:
Yes, I am rooted (little yellow hazard sign at boot up and CWM and Superuser Apps).
I don't know how to access the system storage partition then... I'm certainly no pro in the Android world though...
Click to expand...
Click to collapse
Well, do you have "Root Explorer", (paid) or "ES File Explorer" (free)? Get one of those, navigate to /data, sort by size. (if you use ES File Explorer, you'll have to enable going up to the root folder, and enable root browsing) See if you've got a wifi dump file.
BTW, the "little yellow hazard sign at boot up" doesn't necessarily mean you have root. That just means you have flashed a kernel (via Odin) that was not signed by Samsung. More often than not, this is a kernel that roots your phone, or is used to root your phone, but not necessarily.
Thanks again ctomgee. Apparently no wifi dump file on /data... Sigh...
kuckimonster said:
Thanks again ctomgee. Apparently no wifi dump file on /data... Sigh...
Click to expand...
Click to collapse
Well, do what mirbeksm suggested in post 5... that should spit out disk usage of the /data folder ordered by files/folders, as he stated... post the results, or maybe you'll be able to figure it out after running.
I'm trying but can't quite figure out how to view the root folder from the computer (Mac to make things more complicated), it goes straight to /sdcard.
kuckimonster said:
I'm trying but can't quite figure out how to view the root folder from the computer (Mac to make things more complicated), it goes straight to /sdcard.
Click to expand...
Click to collapse
You can't run an adb shell from a mac?
I guess you could use a terminal emulator (there are several available from the play store) directly from the phone to start a shell, then type the commands from there. (you may have to do "su" first, if the prompt is a "$" instead of a "#")

[Q&A] How to get rid of corrupt/undeletable files?

Hi!
I have the following (cosmetic, i know...) issue: after formatting data for a clean install, i still have a folder which won't go away (see attachment). it contains files with corrupt names, and I could not delete it in any way (format, using CWM, deleting from phone or PC)
I think a PIT fash would do the trick, but I am afaid its not worth it for being too risky.
Does anyone have any tips or tricks to get rid of these files?
Coirpre said:
Hi!
I have the following (cosmetic, i know...) issue: after formatting data for a clean install, i still have a folder which won't go away (see attachment). it contains files with corrupt names, and I could not delete it in any way (format, using CWM, deleting from phone or PC)
I think a PIT fash would do the trick, but I am afaid its not worth it for being too risky.
Does anyone have any tips or tricks to get rid of these files?
Click to expand...
Click to collapse
Mango? you have a fruit folder?
don't go pitting now. Root explorer wouldn't delete that?
gastonw said:
Mango? you have a fruit folder?
don't go pitting now. Root explorer wouldn't delete that?
Click to expand...
Click to collapse
looks like its re-generating.. maybe that directory is part of your rom
bytes2000 said:
looks like its re-generating.. maybe that directory is part of your rom
Click to expand...
Click to collapse
gastonw said:
Mango? you have a fruit folder?
don't go pitting now. Root explorer wouldn't delete that?
Click to expand...
Click to collapse
I tried deleting from PC and with solid explorer (with root) which was unsuccesful. The folder is the library of a comic reader app, thus not system relevant. Depending of the program I use to try to delete it, I get: "File or folder not found (CM File Manager), "unable to delete file /.../ö°Ñ5 π.∞..." (Solid Explorer), and on the PC, I can see a few files with names such as └éQ┬¾╠/Ú.┼, which can not be deleted, because they "can not be found."
does this help?
http://forum.xda-developers.com/showthread.php?t=2083682
Have sent that other guy a pm...
MistahBungle said:
http://forum.xda-developers.com/showthread.php?t=2083682
Click to expand...
Click to collapse
911-Future_Maker said:
Hi mate. Have you tried flashing with Odin? This way I fixed formattiing my sdext2 partition which was unaccessible at all.
You may try to flash some other CWM recovery like Philz and then delete those files.
Click to expand...
Click to collapse
I can't quite understand this. not enough information, I have almost no knowledge whatsoever about filesystems. Should I flash with odin? a rom? or a new CWM?
Why ? You've got the fix
Reminder: "don't mess with mangos"

[Q] Why can I see files in system/ but not through adb or recovery?

When I use an explorer like ES explorer or Root explorer I can go to system/ and find several files & folders.
However, when going to recovery and using the TWRP File manager or by using ADB Shell the System-folder is empty except for a folder named bin/. No sign of build.prop or any other files/folders.
Can anyone please help me explain why this is so? Is this normal?
wish someone knew the answer to this
really irritating ... i am using note 2 using philz CWM it's alright and the aroma file manager works like a charm .. but using TWRP .. same problem even the aroma file manager get's crippled ...
i really prefer twrp .. but until there's a fix i am sticking to CWM
Gnopps said:
When I use an explorer like ES explorer or Root explorer I can go to system/ and find several files & folders.
However, when going to recovery and using the TWRP File manager or by using ADB Shell the System-folder is empty except for a folder named bin/. No sign of build.prop or any other files/folders.
Can anyone please help me explain why this is so? Is this normal?
Click to expand...
Click to collapse
i face the same problem now, maybe it's RE who hide such kind of information from users to prevent the system
On the TWRP home screen, select mount and check the "system" box. You should now be able to browse the entire system directory.
Sent from my SCH-I535 using XDA Premium 4 mobile app
dalvikna said:
i face the same problem now, maybe it's RE who hide such kind of information from users to prevent the system
Click to expand...
Click to collapse
Go to TWRP, go to Mounts and select system.
Now you will be able to see contents of /system partition.
Press Thanks if helped.
Hand Solo said:
On the TWRP home screen, select mount and check the "system" box. You should now be able to browse the entire system directory.
Sent from my SCH-I535 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Thank you
Hand Solo said:
On the TWRP home screen, select mount and check the "system" box. You should now be able to browse the entire system directory.
Click to expand...
Click to collapse
hnkotnis said:
Go to TWRP, go to Mounts and select system.
Now you will be able to see contents of /system partition.
Click to expand...
Click to collapse
You're my savior. Messed up by build.prop file so much to the point of bootlooping, and just needed to delete it and dirty-reflash my rom, without a computer. But everytime I would do that, it would preserve build.prop for some reason, anyway, Thanks
Thanks!
Hand Solo said:
On the TWRP home screen, select mount and check the "system" box. You should now be able to browse the entire system directory.
Sent from my SCH-I535 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Thank you... this was what i needed.
hnkotnis said:
Go to TWRP, go to Mounts and select system.
Now you will be able to see contents of /system partition.
Press Thanks if helped.
Click to expand...
Click to collapse
thank you
Plesse. Somebody can help me. I can't mount data because, ask me for a password so i cant get INTI data folder, to delete my password
hnkotnis said:
Go to TWRP, go to Mounts and select system.
Now you will be able to see contents of /system partition.
Press Thanks if helped.
Click to expand...
Click to collapse
Lol... ran into this today and wanted to just impress upon folks just how amazing and encouraging it can be when someone takes the time to type out a response/suggestion.
In this case, 6yrs after the hnkotnis made this simple post, I'm rushing through a bunch of stuff, screwed up my build.prop (experimenting) and then came up against a roadblock where I couldn't restore my build.prop backup in TWRP.
I was confused as hell - I'm a relatively advanced used with several hundred ROM flashes under my belt and lots of troubleshooting capability but here I am absolutely stalled out on an issue that just drives me up the wall. I'm about to cave and just reset the phone entirely but figure I'll ask the question of Google.
I arrive here and within 10s I'm saying "Duh" to myself... grab the backed up build.prop, repeat the process and I'm back in business.
hnkotnis; if you're still around and part of this community - thank you! You're one of the good ones that make XDA what it is.
It might've seemed silly at the time and perhaps even a moment to make this post but I don't think we can understate the importance of community like this...
Cheers:highfive:

[EFS] EFS backup/restore app for S5 [SM-G900A/F/H/T]

Hey guys, worst part about samsung devices is always their EFS issues.. my samsung tool app has already gained support for SM-G900A, SM-G900F, SM-G900H, SM-G900T before root and custom roms are available, so first thing is first, root(when available) and backup EFS!
ive kept all downloads and discussion within the original thread here! - SAMSUNG TOOL APP HERE
this was made possible by leoaudio13 dumping his partition table!
I love u mate!
Sent from my SM-G900F using Tapatalk
@ricky310711 : if you can make apk to backup efs , its great if you can make apk to dump partitions hehe! BTW ricky, link to proper partition table in Dev section : http://forum.xda-developers.com/showthread.php?t=2695363
leoaudio13 said:
@ricky310711 : if you can make apk to backup efs , its great if you can make apk to dump partitions hehe! BTW ricky, link to proper partition table in Dev section : http://forum.xda-developers.com/showthread.php?t=2695363
Click to expand...
Click to collapse
gonna be hard though!
leoaudio13 said:
@ricky310711 : if you can make apk to backup efs , its great if you can make apk to dump partitions hehe! BTW ricky, link to proper partition table in Dev section : http://forum.xda-developers.com/showthread.php?t=2695363
Click to expand...
Click to collapse
actually thats not hard with root. lol
I'm working on recovery. waiting to hear back from tester(s) to see if we have a working img yet.
PlayfulGod said:
actually thats not hard with root. lol
I'm working on recovery. waiting to hear back from tester(s) to see if we have a working img yet.
Click to expand...
Click to collapse
it wasnt hard without root either
ricky310711 said:
it wasnt hard without root either
Click to expand...
Click to collapse
well you didnt get me the boot/recovery dumps til afterwards.
PlayfulGod said:
well you didnt get me the boot/recovery dumps til afterwards.
Click to expand...
Click to collapse
thats because nothing was accessible until after root, dumping system was easy, but any other directory/file on the device wasnt able to be read after until being rooted..
samsung didnt even include tar binary so I dumped over adb, then CF helped root and then we dumped raw images!
ricky310711 said:
thats because nothing was accessible until after root, dumping system was easy, but any other directory/file on the device wasnt able to be read after until being rooted..
samsung didnt even include tar binary so I dumped over adb, then CF helped root and then we dumped raw images!
Click to expand...
Click to collapse
yea system can be gotten with adb pull w/o root.
Check hangouts, got 2 imgs for yall to test.
PlayfulGod said:
yea system can be gotten with adb pull w/o root.
Check hangouts, got 2 imgs for yall to test.
Click to expand...
Click to collapse
corect! but some files I was still denied permissikn to pull from /system :/
ricky310711 said:
corect! but some files I was still denied permissikn to pull from /system :/
Click to expand...
Click to collapse
Gah!!! Im drunk ricky
Sent from my SM-G900F using Tapatalk
updated.
LTE devices have a QualcommChip, where everything is stored in the nvRAM, the EFS includes only files that have nothing but absolutely nothing to do with the IMEI.
Gesendet von meinem Nexus 5 mit Tapatalk
I backed up my EFS to internal storage but cant find it don't see no /data/media/SamsungTool/ (using EFS file explorer) just want to save a copy to the PC. What's the exact name of the backed up file so i can use the search feature? cheers.
Offica said:
I backed up my EFS to internal storage but cant find it don't see no /data/media/SamsungTool/ (using EFS file explorer) just want to save a copy to the PC. What's the exact name of the backed up file so i can use the search feature? cheers.
Click to expand...
Click to collapse
Backup to your External SD instead.
/storage/extSdCard/SamsungTool/efs.img
Sent from my SM-G900T
dynospectrum said:
Backup to your External SD instead.
/storage/extSdCard/SamsungTool/efs.img
Sent from my SM-G900T
Click to expand...
Click to collapse
Gotta buy a new sd card, But yeah did a search for efs.img and didn't come up, I'll wait and try when i get my sdcard.
G900s/g900l
Hi will it work on the G900S or G900L?
thehacker911 said:
LTE devices have a QualcommChip, where everything is stored in the nvRAM, the EFS includes only files that have nothing but absolutely nothing to do with the IMEI.
Click to expand...
Click to collapse
@thehacker911
For full backup, which partitions do you recommend?
Galaxy S5 SM-900P Partition table
you can still simply create a copy right?
I have always had rooted phones and my SGS 5 is no exception, it got rooted using CFroot in the carpark immediately on picking it up.
I have therefore always simply made a copy of the efs folder on to the external sd card which is then synced to my dropbox.
However I have not really kept up to date with developments in these areas, so my question is nowadays is this still enough to ensure the safety of my device and it's ability to connect to my carrier. In the past when I have had issues after flashing roms and things simply deleting the /efs folder and copying the contents of my back up into it and rebooting has always been sufficient to get my carrier back up and running is this still the case with the international SGS5 qualcomm variant or do I need to consider other elements?
When will it work for SM-G900V? I just rooted my phone today and would like to use this for my backups. I just tried it by using EFS backup and now it's stuck on a triangle with an exclamation mark that says Please Wait. Ugh! Help...

Categories

Resources