Tools to create TWRP and nandroid-style backups of an Android device via a USB connection, without using the device's internal storage or SD card.
WARNING: This is a work in progress. I've only tested it on a
LG/Google Nexus 5 with
TWRP recovery v3.0.0-0,
with adb
v1.0.31 under Ubuntu. You have been warned ☺
- Python 3.3+
progressbar2
andtabulate
packages are needed (pip install progressbar2 tabulate
should do it)
- You must have TWRP recovery installed on your rooted Android device
adb
(Android Debug Bridge) command-line tools
Boot your device into TWRP recovery and connect it via USB. Ensure that it's visible to adb
:
$ adb devices
List of devices attached
0123deadbeaf5f5f recovery
-
Make a TWRP-style backup over ADB. This saves a gzipped image of the
boot
partition asboot.emmc.win
, and saves the contents of the/system
and/data
partitions as tarballs namedsystem.ext4.win
anddata.ext4.win
:$ ./tetherback.py Device reports TWRP kernel (3.4.0-bricked-hammerhead-twrp-g7b77eb4). Reading partition map for mmcblk0 (29 partitions)... partition map: 100% Time: 0:00:03 Saving backup images in twrp-backup-2016-03-17--17-44-04/ ... Saving partition boot (mmcblk0p19), 22 MiB uncompressed... boot.emmc.win: 100% Time: 0:00:05 3.04 MB/s Saving tarball of mmcblk0p25 (mounted at /system), 1024 MiB uncompressed... system.ext4.win: 100% Time: 0:02:16 2.29 MB/s Saving tarball of mmcblk0p28 (mounted at /data), 13089 MiB uncompressed... data.ext4.win: 100% Time: 0:05:38 2.60 MB/s
-
Make a "nandroid"-style backup over ADB. This saves gzipped images of the partitions labeled
boot
,system
, anduserdata
(named<label>.img.gz
):$ ./tetherback.py -n Device reports TWRP kernel (3.4.0-bricked-hammerhead-twrp-g7b77eb4). Reading partition map for mmcblk0 (29 partitions)... partition map: 100% Time: 0:00:03 Saving backup images in nandroid-backup-2016-03-17--18-15-03/ ... Saving partition boot (mmcblk0p19), 22 MiB uncompressed... mmcblk0p19: 100% Time: 0:00:05 3.07 MB/s Saving partition system (mmcblk0p25), 1024 MiB uncompressed... mmcblk0p25: 100% Time: 0:03:05 1.76 MB/s Saving partition userdata (mmcblk0p28), 13089 MiB uncompressed... mmcblk0p28: 100% Time: 0:40:04 1.80 MB/s
-
Extra partitions can be included (as raw images) with the
-x
/--extra
option; for example,-x modemst1 -x modemst2
to backup the Nexus 5 EFS partitions. -
The partition map and backup plan will be printed with
-v
/--verbose
(or use-0
/--dry-run
to only print it, and skip the actual backup). For example, the following partition map and backup plan will be shown for a Nexus 5 with the standard partition layout:BLOCK DEVICE NAME SIZE (KiB) FILENAME FORMAT -------------- -------- ------------ --------------- -------------------------------------------------------- mmcblk0p1 modem 65536 ... mmcblk0p19 boot 22528 boot.emmc.win gzipped raw image ... mmcblk0p25 system 1048576 system.ext4.win tar -czC /system -p ... mmcblk0p28 userdata 13404138 data.ext4.win tar -czC /data -p --exclude="media*" --exclude="*-cache" mmcblk0p29 grow 5
-
Additional options allow exclusion or inclusion of standard partitions:
-M, --media Include /data/media* in TWRP backup -D, --data-cache Include /data/*-cache in TWRP backup -R, --recovery Include recovery partition in backup -C, --cache Include /cache partition in backup -U, --no-userdata Omit /data partition from backup -S, --no-system Omit /system partition from backup -B, --no-boot Omit boot partition from backup
I've been frustrated by the fact that all the Android recovery backup tools save their backups on a filesystem on the device itself.
- TWRP recovery (code) creates a mixture of raw partition images and tarballs, and stores the backups on the device itself.
- Same with CWM recovery , which creates nandroid-style backup images (just raw partition images) and again stores them on the device itself.
This is problematic for several reasons:
- Most modern Android smartphones don't have a microSD card slot.
- There may not be enough space on the device's own filesystem to back up its own contents.
- Getting the large backup files off of the device requires an extra, slow transfer step.
Clearly I'm not the only one with this problem:
- http://android.stackexchange.com/questions/64354/how-to-do-a-full-nandroid-backup-via-pc
- http://android.stackexchange.com/questions/47975/is-there-a-way-to-do-nandroid-backup-directly-to-pc-and-then-restore-it-directly
I found that @inhies had already created a shell script to do a TWRP-style backup over USB (Gist) and decided to try to put together a more polished version of this.
One of the very annoying issues with adb
is that
adb shell
is not 8-bit-clean:
line endings in the input and output get mangled, so it cannot easily
be used to pipe binary data to and from the device. The common
workaround for this is to use TCP forwarding and netcat
(see
this answer on StackOverflow),
but this is more cumbersome to code, and prone to strange timing
issues. There is a better way to make the output pipe 8-bit-clean, by
changing the terminal settings
(another StackOverflow answer),
though apparently it does not work with Windows builds of adb
.
TCP forwarding is used by default. If you have problems, please try
--base64
for a slow but reliable transfer method, and please
report any data corruption issues. If
your host OS is Linux, --pipe
should be faster and more reliable.
-t, --tcp ADB TCP forwarding (fast, should work with any host
OS, but prone to timing problems)
-6, --base64 Base64 pipe (very slow, should work with any host OS)
-P, --pipe Binary pipe (fast, but will PROBABLY CORRUPT DATA on
non-Linux host)
GPL v3 or newer