我试图在Nexus6P上闪现谷歌工厂的图像文件,但它总是停留在同一点。USB调试是启用的,MTP模式也是。引导加载程序是解锁的,并与亚行快速引导等通信,有什么东西我遗漏了吗?我下载了zip文件并解压缩到platform文件夹中。甚至还安装了google推荐的驱动程序。如果有人能接受比特币或其他密码,请帮助,我会把它发送给帮助
(c) 2017 Microsoft Corporation. All rights reserved.
C:\Users\gemma\Desktop\platform-tools_r29.0.6-windows\platform-tools>fastboot reboot-bootloader
Rebooting into bootloader OKAY [ 0.022s]
Finished. Total time: 0.022s
C:\Users\gemma\Desktop\platform-tools_r29.0.6-windows\platform-tools>fastboot flash-all.bat
fastboot: usage: unknown command flash-all.bat
C:\Users\gemma\Desktop\platform-tools_r29.0.6-windows\platform-tools>flash-all.bat
Sending 'bootloader' (3524 KB) OKAY [ 0.116s]
Writing 'bootloader' OKAY [ 0.209s]
Finished. Total time: 0.378s
Rebooting into bootloader OKAY [ 0.107s]
Finished. Total time: 0.107s
Sending 'radio' (48120 KB) OKAY [ 1.065s]
Writing 'radio' OKAY [ 2.140s]
Finished. Total time: 3.269s
Rebooting into bootloader OKAY [ 0.000s]
Finished. Total time: 0.000s
--------------------------------------------
Bootloader Version...: angler-01.31
Baseband Version.....: angler-01.29
Serial Number........: ENU7N15C1700????
--------------------------------------------
extracting android-info.txt (0 MB) to RAM...
Checking 'product' OKAY [ 0.019s]
Checking 'version-bootloader' OKAY [ 0.018s]
Checking 'version-baseband' OKAY [ 0.017s]
Snapshot cancel FAILED (remote: 'unknown command')
fastboot: error: Command failed
Press any key to exit...发布于 2020-04-07 12:55:16
使用旧的平台工具对我不起作用。我必须提取系统图像并一次闪现一个项目。
这是为Nexus5x,但应该适用于所有谷歌提供的系统图像下载在https://developers.google.com/android/images发生此错误。
> unzip [downloaded zip file]
> cd [new directory]
> unzip image-[device specific].zip
inflating: android-info.txt
inflating: vendor.img
inflating: boot.img
inflating: recovery.img
inflating: system.img
> fastboot flash boot boot.img
> fastboot flash bootloader bootloader-[device specific].img
> fastboot reboot-bootloader
> fastboot flash radio radio-[device specific].img
> fastboot flash recovery recovery.img
> fastboot flash system system.img重新启动并交叉手指。
发布于 2020-03-11 11:09:31
相反,安装older platform tools -避免了12月份发生的“快速引导: Flashall做正确的快照取消”的快速引导更改。为了解决Nexus 7更新中的相同问题,我使用了27.0.0版本。
发布于 2020-05-24 19:16:42
在将Nexus5x从6.0升级到8.1.0时,我也遇到了同样的问题。这个问题的主要原因是您的SDK平台-工具版本,在我的例子中是30.0.1。在您的系统中,您可以在以下位置找到此平台工具:
C:\Users\username\AppData\Local\Android\Sdk\platform-tools因此,我只需使用以下步骤解决问题
https://dl.google.com/android/repository/platform-tools_r26.0.2-windows.zip (如果您有linux或Mac,只需将windows关键字替换为您在上述URL中的系统类型)
现在,将最新的平台工具重命名为platform-tool-copy.。
https://stackoverflow.com/questions/60443933
复制相似问题