A suite of scripts used to backup app data on recovery. Suitable for that device cannot boot properly.
Recovery环境下的应用备份套件,适用于安卓11+设备。用于在无法启动到Android时备份应急的应用数据。
在twrp和orangefox中测试良好。
10.24程序员节快乐(
#########################################################################################
# WARNING: # 警告:
# We are not responsible for dead sdcard, # 我们不对SD卡损坏,数据丢失,核战争,或者
# lost data, nuclear war, or you getting # 你因为闹钟不响铃而被解雇负责。
# fired because the alarm app failed. #
# This script is only for emergency use. # 此脚本仅用于紧急情况。
# The backup data may not be complete. # 备份数据可能不完整。
# We not guarantee the backup data. # 我们不保证备份数据。
# Use at your own risk. # 请自行承担风险。
# You have been warned! # 你已经被警告!
#########################################################################################
如果您有更多要求,请使用功能更全的backup-script(来自其他开发者的作品,需要设备在开机状态时已创建zip侧载包).
此脚本可用于无法启动系统时的紧急应用备份,。
You should have a recovery environment that can give you a shell with root permission.
Your console should have adb
git
tar
and gzip
installed.
Your computer should installed mtp driver and adb driver.
你应该有一个可以给你root权限的recovery环境。
你的终端应该安装了adb
git
tar
和 gzip
。
你的电脑应该安装了mtp驱动和adb驱动。
As the title says, this script is used to backup app data on RECOVERY ENVIRONMENT.
就像标题所说,这个脚本可用于在RECOVERY环境中备份应用数据。
Download the backup.sh, the push into device.
Add run permission to this file.
Then wait. Your total backup file will store at /sdcard/complete_backup.tar.gz
.
Your device may not have enough space to store the backup file, if in that case, you may want to backup to an external storage that connected by OTG (that mean you should edit the script by your self), or push the backup file to your computer (You should stare at the terminal, wait an tar.gz complete, then pulled them by adb. Annoying.).
下载 backup.sh,然后推送到设备中。
添加运行权限。
然后等待。
你的完整备份文件将存储在/sdcard/complete_backup.tar.gz
。
你的设备可能没有足够的空间来存储备份文件, 如果是这种情况,你可能需要备份到一个通过OTG连接的外部存储 (你将需要自己编辑脚本),或者将备份文件推送到你的电脑。 (你应该盯着终端,等待tar.gz完成,然后通过adb拉取它们。 烦人。)
git clone https://github.com/SteveZMTstudios/AppBackup-onRecovery.git
cd AppBackup-onRecovery
adb push ./backup.sh /tmp
adb shell chmod +x /tmp/backup.sh
adb shell sh /tmp/backup.sh
adb pull /sdcard/complete_backup.tar.gz /path/to/your/backup/folder
Verbose version is also available. Use
sh /tmp/backup.sh -v
to enable verbose mode.Verbose版本也可用。使用
sh /tmp/backup.sh -v
来启用详细模式。
(Still in development) (仍在开发中) Download the backup.zip, then install it in recovery.
Then wait.
下载 backup.zip,然后在recovery中安装。
然后等待。
Power on your device, give shell root
permission.
Push the Full Backup file into device. File name should be like complete_backup.tar.gz
Then unzip it directly. You will get a folder named EmergencyBak
.
Download the restore.sh, the push into device.
Add run permission to this file.
Then wait.
打开设备,给予shell root
权限。
推送完整备份文件到设备。文件名应该像 complete_backup.tar.gz
然后直接解压。你将得到一个名为 EmergencyBak
的文件夹。
下载 restore.sh,然后推送到设备。
添加运行权限。
然后等待。
adb push /path/to/your/backup/folder/complete_backup.tar.gz /sdcard
adb shell mkdir /sdcard/EmergencyBak
adb shell tar -xvf /sdcard/complete_backup.tar.gz -C /sdcard/EmergencyBak
git clone https://github.com/SteveZMTstudios/AppBackup-onRecovery.git
cd AppBackup-onRecovery
adb push ./restore.sh /data/local/tmp
adb shell chmod +x /data/local/tmp/restore.sh
adb shell su -c "sh /data/local/tmp/restore.sh"
Verbose version is also available. Use
sh /data/local/tmp/restore.sh -v
to enable verbose mode.
- Backup app data 备份应用数据
- Restore app data 还原应用数据
- Backup Gallery 备份相册
- Backup Storage 备份存储
Not suitable for Android 10 and below. (Because the apk directory structure has been changed after Android 11)
App when restored may not work properly. (Because some app require a match Android ID or more)
Some data may still lost. (Because some app doen't store data in /data/data/ or they should store in.)
Not good at split apk.
Slow on large app. (Because the script will backup all files in /data/data/)
不适用于安卓10及以下。(因为Android 11以后变更了apk的目录结构)
还原后的应用可能无法正常工作。(因为一些应用需要匹配Android ID或更多)
一些数据可能仍然丢失。(因为一些应用不会存储数据在/data/data/或者他们应该存储的位置。)
不擅长Split apk。
大型应用上速度较慢。(因为脚本会备份/data/data/中的所有文件。)
脚本使用的是英文(你不能苛责这一点!不是所有的Recovery都带中文!)
/sdcard/EmergencyBak/
|---<packagename>-backup.tar.gz
|---|- data
| |- app (same as /data/app/*)
|- data_data
| |- data
| |- data (same as /data/data/*)
|- data_user
|- data_user_de
|- media_data
|- media_obb
AppBackup-onRecovery, including all git submodules are 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 <http://www.gnu.org/licenses/>.