我正在尝试打开/转换 .ab 为 .tar
dd if=backup.ab bs=24 skip=1 | zlib-flate -uncompress > backup.tar
但我一直收到这个错误!
dd : The term 'dd' is not recognized as the name of a cmdlet, function, script file, or operable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
dd
命令是 Linux/Unix 操作系统上可用的 GNU 命令。
在 Windows 中 dd
不包括在内。
如果你想使用
dd
,你必须找到适用于Windows的dd
版本或安装带有Linux操作系统的虚拟机。从 Windows 10 开始,最简单的方法是安装 WSL2(或 WSL1)Linux VM。 Microsoft Store 免费提供多个系统。
但更简单的方法是简单地使用 Android 备份提取器,这是一个基于 Java 的开源工具,可以解压和解密 Android 备份文件('.ab' 到
.tar
)。