Android phone full backup
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.

#privacy

threaded - newest

irotsoma@piefed.blahaj.zone on 24 Aug 17:59 next collapse

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.

bridgeenjoyer@sh.itjust.works on 24 Aug 18:10 collapse

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

Tatar_Nobility@lemmy.ml on 24 Aug 19:13 next collapse

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.

Estebiu@lemmy.dbzer0.com on 24 Aug 19:50 next collapse

I use DataBackup (app on fdroid) for that. It does need root tho. But it makes it so incredibly frictionless to switch phones.

bridgeenjoyer@sh.itjust.works on 24 Aug 20:45 collapse

can’t wait till i do have a rooted device! I’ll save this for when i do,

helpImTrappedOnline@lemmy.world on 24 Aug 22:26 next collapse

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.

hirihit640@sh.itjust.works on 25 Aug 03:53 next collapse

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:

  1. on phone, enable developer options
  2. on computer, install android tools, which should come with adb (Do not install full android developer toolkit, it’s huge. You only need adb)
  3. on computer run ‘adb devices’, which should currently print that no devices were found
  4. plug phone into computer, and accept authorization prompt on phone
  5. on computer run ‘adb devices’ again and it should list your phone with the status “authorized”

Now you should be able to use adb pull -p -a <folder name> to back up folders to your computer, for example adb 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.

hexagonwin@lemmy.today on 26 Aug 17:45 collapse

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

bridgeenjoyer@sh.itjust.works on 26 Aug 20:11 collapse

Gotcha, I am gonna stick with syncthing for now !