BACKUP1 IMG
File conversion

Convert BACKUP1 to IMG

QUICK ANSWER
Is it possible to convert BACKUP1 to IMG?
Yes - BACKUP1 converts to IMG.

A .backup1 file is one segment of an Android system-recovery backup that was split into 2GB pieces (.backup, .backup1, .backup2...). Concatenate the parts in order with cat (or dd) to rebuild a single raw .img. The only catch is each part may carry a 512-byte header that must be stripped.

Also to IMG: KDZ · DD · UDF

On this page

Tested on macOS, Windows & Linux
Last verified Sep 2026

More free converters

HEIC, PNG, WEBP, MP3 and more - every tool here is free.

Open the toolbox

Why convert BACKUP1 to IMG?

People recombine the split parts into one .img so they can mount the raw ext4 image, browse the filesystem, or flash it back to a device. On its own a single .backup1 part is useless because it is only the middle of one continuous image.

How to convert BACKUP1 to IMG

cat (coreutils) FREE

Join the parts in order: cat userdata.backup userdata.backup1 userdata.backup2 > userdata.img. Run it on a filesystem that allows files over 2GB (ext4, NTFS).

dd (coreutils) OPEN-SOURCE

If each part has a 512-byte header, skip it while appending: dd if=userdata.backup1 skip=512 iflag=skip_bytes oflag=append conv=notrunc of=userdata.img, repeating per part.

About these formats

Quality & what to watch

  • The parts must be concatenated in exact order; a missing or out-of-sequence chunk corrupts the whole image.
  • Some device backups prepend a 512-byte header to each part - leaving it in produces a broken filesystem, so use dd to strip it.
  • The result is a raw block image, not a compressed archive; it will be the full size of the original partition even if mostly empty.

Frequently asked questions

Do I need all the `.backup` parts?
Yes. .backup, .backup1, .backup2 and any further parts are one image split up; you must join every piece in order.
Why does my joined image look corrupt?
Most likely each part had a 512-byte header. Rebuild it with dd skipping the first 512 bytes of every part instead of a plain cat.
Can I do this on Windows?
Yes, using copy /b part1+part2 out.img in cmd, but do it on an NTFS drive so the file can exceed 2GB.
What is inside the finished `.img`?
Usually a raw Linux ext4 filesystem you can then mount read-only or open with 7-Zip to pull out files.