Skip to content

Back up your device without vendor lock-ins, using insecure software or root. Supports encryption and compression out of the box. Works cross-platform.

License

Notifications You must be signed in to change notification settings

Backtix/linux-android-backup

 
 

Repository files navigation

Linux Android Backup

Linux Android Backup is a tiny shell script & Flutter app that makes securely backing up Android devices easy, without vendor lock-ins or using closed-source software that could put your data at risk. It's based on ADB but doesn't use the deprecated adb backup command. Despite its name, this project works on Windows, macOS and Linux.

Demo

Data backed up

  • Apps (.apk files of installed apps)
  • Internal storage (pictures, downloads, videos, Signal backups if enabled, etc)
  • Contacts (exported in vCard format)

These 3 things are the majority of what most people would want to keep safe, but everybody has different expectations and requirements, so suggestions are welcome.

Features

  • Automatically restores backed up data.
  • Works on the 3 major operating systems, and supports any modern Android device.
  • Wireless backups that allow you to normally use your phone while it's being backed up.
  • Backs up data not normally accessible through ADB using a native companion app.
  • Tiny - the script is 5KB in size, and the companion app is around 15 megabytes.
  • Doesn't use proprietary formats - your data is safe even if you can't run the script. Simply open archives created by this script using 7-Zip.
  • Backups are encrypted along with their metadata.
  • All data is compressed using 7-Zip with maximum compression settings.

Installation

Linux

  1. Install p7zip, adb, curl, bc and pv. If you're on Debian or Ubuntu, run this command: sudo apt update; sudo apt install p7zip-full adb curl bc pv.
  2. Clone or download this repository.
  3. Enable developer options and USB debugging on your device, then run backup.sh in a terminal.

macOS

Warning: I've recently switched to an AMD CPU+NVIDIA GPU rig, making it impossible for me to test this script on macOS without buying a Mac. Whilst there is nothing that could prevent this script from running on macOS, you are on your own and support will be very limited.

  1. Install p7zip and adb using Homebrew:
# Tip: Run these commands in the built-in Terminal app (or iTerm if you have that installed).
# Install Homebrew if you haven't yet
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# If you already have Homebrew installed, just run these 2 commands:
brew install --cask android-platform-tools
brew install p7zip pv
  1. Follow the steps 2 and 3 from the install guide for Linux.

Windows

  1. Install the Windows Subsystem for Linux (WSL), a compatibility layer allowing you to run Linux applications (such as this one) on Windows. You only need to follow the Install step.
  2. Clone or download this repository.
  3. Open the repository in the file explorer. Right click on a file called backup-windows.ps1, and click on "Run with PowerShell". IMPORTANT: If you see an error after running the script, search for "Developer Settings" in the Settings app, and apply the settings related to PowerShell.

Usage

Just run backup.sh and the script will walk you through the process. This section covers advanced usage of this program.

Automation/Unattended Backups

Please keep in mind that this project has minimal support for automation and very little support will be provided. In order to export contacts, you still need to have physical access to the device you're backing up as an "unattended mode" for the companion app hasn't been implemented yet.

There are 6 environment variables that control what the script does without user input:

  1. unattended_mode - Instead of waiting for a key press, sleeps for 5 seconds. Can be any value.
  2. selected_action - What the script should do when run. Possible values are Backup and Restore (case sensitive).
  3. archive_path - Path to the backup. Works for both actions.
  4. archive_password - Backup password.
  5. mode - How the script should connect to the device. Possible values are Wired and Wireless (case sensitive).
  6. export_method - The method Linux Android Backup should use to export data from the device. Possible values are tar and adb (case sensitive) - the former is fast & very stable but might not work on all devices, and the latter is widely compatible but has stability issues.

Examples:

# Enable unattended mode, backup the device over the wire to the working directory and use the password "123"
$ unattended_mode="yes" selected_action="Backup" mode="Wired" export_method="tar" archive_path="." archive_password="123" ./backup.sh
# Keep unattended mode disabled, but automatically use the password "456"
$ archive_password="456" ./backup.sh

Building companion app

Note: You don't need to do this, as the precompiled companion app is automatically downloaded at runtime from GitHub Releases.

  1. Install Flutter and Android Studio.
  2. Run flutter doctor and flutter doctor --android-licenses.
  3. Run cd companion_app/ and flutter build apk.

TODO

PRs are appreciated.

  • Migrate the companion app to the Storage Access Framework API for forward compatibility (waiting for Flutter packages providing this functionality to become stable).
  • Improve the error handling and design of the mobile app.
  • Export the calendar and other data.

License

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.

About

Back up your device without vendor lock-ins, using insecure software or root. Supports encryption and compression out of the box. Works cross-platform.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 85.2%
  • Dart 13.3%
  • PowerShell 1.3%
  • Kotlin 0.2%