.BACKUP1

BACKUP1 File

Split Android Recovery Backup File (part 2)
Ask a question
QUICK ANSWER

A .backup1 file is the second part of a split backup created by an Android phone or tablet in System Recovery Mode. When the userdata backup is larger than about 2GB, the recovery splits it across .backup, .backup1, .backup2 and so on, all written to the SD card. You cannot open a single .backup1 part on its own; you strip the 512-byte header from each part, join them in order, and mount the result as an ext4 image on Linux.

Developer: Google / Android device vendors (Samsung stock recovery) Category: Backup Files MIME: application/octet-stream
OPENS ON Windows Linux
Related: .BUP · .BAK · .SKB · .SET

On this page

19k+ extensions indexed
Last reviewed Jul 5, 2026

Not sure what your file is?

Drop any file into our identifier - we read just the first bytes to name the format.

Identify a file

What is the BACKUP1 file format?

A .backup1 file is the second part of a split backup made by an Android device's stock System Recovery Mode, seen most often on older Samsung phones and tablets. When the device backs up its userdata partition, the SD card holding the copy is usually formatted FAT32, which cannot store a file larger than about 2GB. The recovery works around this by writing the image in 2GB slices: the first is named .backup, the next .backup1, then .backup2, and so on. Each file carries a timestamp, for example userdata_20240101_000617.backup1.

On its own a .backup1 part is incomplete. Together the parts form one image of the userdata partition, holding contacts, app data, media, and settings. Every 2GB slice begins with a 512-byte header block that is not part of the payload. Once the headers are stripped and the parts are joined in order, the result is usually a raw ext4 filesystem, though some devices store a gzip-compressed tar stream instead. Despite the similar name, this is not the .ab format produced by adb backup.

Security & safety

RISK: LOW

A .backup1 part is inert data, not executable, so it cannot run on its own. The main practical risk is data loss during reassembly: extract with read-only mounts and work on copies, since a missing or out-of-order part yields a corrupt ext4 image. The backup is unencrypted, so treat it as sensitive personal data because it can contain contacts, messages, and app credentials.

Format details

in a nutshell
FULL NAMESplit Android Recovery Backup File (part 2)aka Split Android Backup File, Android Recovery Backup part 1
DEVELOPERGoogle / Android device vendors (Samsung stock recovery)since Early 2010s (Android device recovery backups)
CATEGORYBackup Files
MIME TYPEapplication/octet-stream
TYPEBinary container; segment of an ext4 partition image (or gzip+tar stream)
This extension is also used by…
  • Generic incremental backup part - Some backup utilities append .backup1, .backup2 as generation or rotation numbers to any file's backup copy, unrelated to Android.
  • Editor/app numbered backup copy - A few programs write .backup1 as a second-newest safety copy alongside .backup when saving a document or config.

Programs that open BACKUP1 files

Windows2 apps
7-Zip Open-source For the gzip-tar variant, once the 512-byte header is removed, 7-Zip can open the resulting gzip and tar layers to extract the archived files.
DiskInternals Linux Reader Freemium After you concatenate the header-stripped parts into a single ext4 image, open that image in Linux Reader to browse and export files from the ext4 filesystem on Windows.
Linux3 apps
dd + mount (coreutils / util-linux) Open-source Strip the 512-byte header from each part with dd (skip=512), append the parts in order into one img.ext4, then mount it read-only as ext4 with mount -t ext4 -o loop,ro to browse the userdata contents.
gunzip + tar (GNU tar) Open-source For the gzip-tar variant, pipe the header-stripped stream through gunzip and tar (dd if=userdata_....backup skip=1 bs=512 | gunzip -c | tar xv) to unpack files directly without mounting.
e2fsprogs (debugfs / dumpe2fs) Open-source After reassembling the ext4 image, use debugfs to inspect and extract individual files or run fsck.ext4 to repair a damaged image before mounting.

Technical details

deep spec
EncodingBinary. Raw ext4 filesystem bytes, or a gzip-compressed tar stream, depending on the device recovery implementation.
Byte orderLittle-endian (ext4 on ARM Android devices)
ContainerSplit segment: one slice of a larger logical image spread across .backup, .backup1, .backup2 and so on.
CompressionNone for the raw-ext4 variant; gzip (DEFLATE) for the tar-based variant seen on some devices.
EncryptionNone by default. The stock recovery backup is unencrypted, which is what makes offline extraction with dd/mount possible.
Typical sizeAbout 2 GB per part; the recovery splits at the ~2GB boundary imposed by FAT32 SD cards.
StructureEach part begins with a 512-byte header block that must be stripped, then holds a 2GB slice of the payload. Parts are numbered .backup (first), .backup1 (second), .backup2 (third) and continue sequentially. Concatenating the header-stripped payloads reconstructs a single ext4 image (or a single gzip+tar stream).
IntegrityNo standard embedded checksum documented; integrity depends on all parts being present and concatenated in order.
PlatformsAndroid
NotesFiles carry a timestamped name such as userdata_yyyymmdd_HHMMSS.backup1 and are written to the device SD card by System Recovery Mode. This is distinct from the adb backup .ab (Android Backup) format. Reassembly command pattern: dd if=userdata_....backup1 skip=512 bs=128k iflag=skip_bytes oflag=append conv=notrunc of=img.ext4 (repeated per part), then mount -t ext4 -o loop img.ext4 /mnt.
Structure TypeSplit multi-part image
ReleasedEarly 2010s (Android device recovery backups)

BACKUP1 conversions

Community Q&A

asked by users
Ask a quick question
Get help from people who work with BACKUP1 files. Be specific - include your system and software version.
No account needed · answers usually within a day

No questions yet - be the first to ask about BACKUP1 files.

Frequently asked questions

Can I open a .backup1 file by itself?
No. A .backup1 file is only the second slice of a larger image. You need the matching .backup first part and any further .backup2, .backup3 parts, all from the same backup, before you can reassemble and read anything.
How do I restore a .backup1 backup to my phone?
The intended route is the same device's System Recovery Mode: boot into recovery (hold power plus a volume key), then choose the restore user data option. If you no longer have that device, you extract the files manually on a computer instead.
Why is my backup split into .backup, .backup1 and .backup2 files?
The SD card that held the backup is usually FAT32, which cannot store a file larger than about 2GB. The recovery splits the userdata image into 2GB parts and numbers them sequentially.
How do I extract the data on a Windows PC?
Reassemble the parts into one ext4 image by stripping the 512-byte header from each and joining them in order, then open the image with a tool like DiskInternals Linux Reader. Using a Linux machine or WSL with dd and mount is often simpler.
Is a .backup1 file encrypted?
Not by default. The stock recovery backup is unencrypted, which is why offline extraction with dd, gunzip, tar, and an ext4 mount works. Because it is unencrypted, keep it private since it holds personal data.
Is this the same as an adb backup .ab file?
No. The .ab Android Backup format comes from the adb backup command and stores per-app data. A .backup1 part is a slice of a raw userdata partition image made by device recovery. They are not interchangeable.

References

1Just Solve the File Format Problem - Android Recovery Mode Backupjustsolve.archiveteam.org
2FileInfo - .BACKUP1 File Extensionfileinfo.com

Keep exploring

across the database

Top extensions this week

1.AQQAQQ Instant Messenger File
2.CRDOWNLOADChrome Partial Download File
3.MDMarkdown Document
4.BINCD/DVD Disc Image (BIN/CUE)
5.NOMEDIAAndroid No-Media Marker File
6.PARTPartial Download File
7.RPMSGRestricted Permission Message
8.EXEWindows Executable (Portable Executable)
9.AVIFAV1 Image File Format (AVIF)
10.DBSQLite Database File

Related extensions

.BUPDVD IFO Backup File
.BAKBackup File (generic)
.SKBSketchUp Backup File
.SETMicrosoft Backup File Set
.BAK~AbiWord auto-saved document file
.BACKUPBackup File (generic)

Free file tools

An in-browser file identifier and image converter - everything runs on your device.

Open the toolbox

Browse file extensions A-Z