Android phone full backup
from bridgeenjoyer@sh.itjust.works to privacy@lemmy.ml on 24 Aug 17:44
https://sh.itjust.works/post/65615457
from bridgeenjoyer@sh.itjust.works to privacy@lemmy.ml on 24 Aug 17:44
https://sh.itjust.works/post/65615457
I think I asked before but never got a solid answer. I have a s23, I disable all google and Samsung services I can etc, but I am still stuck with stock android. I plan to move to a better phone in the next year.
However I need a solution for a full phone backup. Not even a sync right now, just plug in and backup all my apps notes and photos (photos are backed up already but I don’t care about doubling up for now.
The reason being I dont want to lose or have my phone stolen and have no backup. I do have FMD installed but still.
This is one big downside of not being fully self hosted yet but refusing to use google products… No instant sync to a new phone if mine is lost.
threaded - newest
The only way to do a truly full backup of apps and their data is to have root access. Unfortunately, many phones these days have “security” features that void the warranty and/or break apps like banking, Google Wallet tap-to-pay, etc. Or even some apps like games that rely on that for anticheat will break. And some security features make that last even if you relock the phone. So be careful to read what your phone has and what you’ll be permanently giving up.
I have a Pixel 10 and installed GrapheneOS which has some backup capabilities built in, but I can’t use Google Pay, some banking features, a bunch of games, the official UPS app, etc. But if I gave in and went back to Google Android it would all work. Samsung and other manufacturers are often not as generous.
Well I guess apps I dont really care. I can reinstall. Just all the data. Could i literally just copy all my folders onto my desktop? I did use appliast backup to get a list of my apps backed up and I threw my contacts backup on my nas
I’m in a similar situation. I did inidvidual backups for each app that offers such a feature and copied them into a hard drive with all the photos and other files that I need. It’s arduous the first time but it becomes easier the next time you do a full backup. I have an organized folder which contains subfolders for each app and for photos, downloads, etc. All backup files are exported into their respective folder. It takes me all in all up to 15 minutes.
I use DataBackup (app on fdroid) for that. It does need root tho. But it makes it so incredibly frictionless to switch phones.
can’t wait till i do have a rooted device! I’ll save this for when i do,
A lot of programs have an export button for settings a such. Useful for your launcher and whatever else has a lot of settings.
I don’t like doing a full restore, new phones are a good time to clear old system files and crap.
For syncing stuff, I don’t use most of the default phone folders for docs, music, etc. I make my own for everything, so if some update or app decides to do some shenanigans to those folder none of that is backed up. Only folders I don’t make are downloads and photos, and dcim, which I still backed up.
If you don’t want to deal with a syncthing or something automatic, you could try “Back In Time” on Linux.
I believe you can use the command-line tool “adb” for this. It’s been a while since I’ve done it since I use syncthing now, but here’s a quick intro:
Now you should be able to use
adb pull -p -a <folder name>to back up folders to your computer, for exampleadb pull -p -a /sdcard/DCIM.Note that you will have trouble backing up the /sdcard/Android folder, which contains a lot of app data. Unfortunately I think you need root to back up that folder. Alternatively you can back up individual apps using
adb backup ….Personally I think in the long term, automatic backups like syncthing is better. Manual backups are a hassle and because of that, you won’t do them as often.
i use titanium backup because i use old android. i think swift backup is the recommended alternative now. you need root for this tho.
there’s a recent linux kernel vulnerability that allows temporary rooting so you might be able to use it if you haven’t installed os updates since april this year or so
Gotcha, I am gonna stick with syncthing for now !