Using Ubuntu 17.10
I'm trying to back up an android tablet (Android 6.0.1) to my laptop. I've downloaded and installed adb.
I've backed up using this:
~$ adb backup -05af3120-tablet-backup.adb -apk -all
but now can't find where the backup is actually located. I'm clearly being thick, but I was also expecting the Android backup to be more obvious.
Any ideas?
Cheers.
https://www.howtogeek.com/125769/how-to-install-and-use-abd-the-android-debug-bridge-utility/
Use the -f flag to specify a path and filename.
If you want to find whatever output the above has produced ( and I can't see what it would have produced as it looks like the syntax is incorrect):
$ find . -name "filename"
@hugo7 started
London Fixed Gear and Single-Speed is a community of predominantly fixed gear and single-speed cyclists in and around London, UK.
This site is supported almost exclusively by donations. Please consider donating a small amount regularly.
Using Ubuntu 17.10
I'm trying to back up an android tablet (Android 6.0.1) to my laptop. I've downloaded and installed adb.
I've backed up using this:
~$ adb backup -05af3120-tablet-backup.adb -apk -all
but now can't find where the backup is actually located. I'm clearly being thick, but I was also expecting the Android backup to be more obvious.
Any ideas?
Cheers.
https://www.howtogeek.com/125769/how-to-install-and-use-abd-the-android-debug-bridge-utility/