无法通过 ADB 使用 fastboot 将文件发送到我的 phone

Can't send file to my phone with fastboot through ADB

我卡在了恢复模式,因为当我从 CM12 更新到 CM12.1 ROM 时忘记在我的 LG G2 (D802) 上刷入 GAPPS。我的 phone 现在正在启动循环。

由于我无法使用任何外部存储,我正在尝试通过我的 windows 7 PC 的快速启动将 GAPPS 包发送到我的 phone。
但是当我执行 adb devices 时,我看到我的 phone 为 unauthorized 并且我无法将文件推送到它。

我有 CWM 6.0.5.0,带有 PhilZ Touch 6.48.4 和触摸 GUI 修订版 1.30,我的 ADB 版本是 1.0.32。

所以,我想知道如何在我的设备上启用 ADB 恢复模式,或者如何从计算机授予对我的设备的访问权限?或者简单地说,如果有另一种方法可以实现这一点。

非常感谢。

我用 adb sideload 以其他方式解决了这个问题。

要使用 CWM 和 ADB 在恢复模式下在 phone 上安装 flashable zip,请从主菜单的根目录执行以下步骤:

1 - Choose install zip  
2 - Install zip from sideload  
3 - Plug the phone to the computer  
4 - Type `adb devices` in the windows command shell from the fastboot directory  
5 - Phone should now be listed as "sideload"  
6 - In the Windows command shell type `adb sideload <filename>`  
7 - Wait while the file is send to your phone  
8 - Once the transfer is complete the file is flashed automatically  
9 - Once the flash is successful unplug your phone and restart it in normal mode  
10 - You can **wipe cache and dalvik cache** to avoid errors  

我的 phone 现在可以 运行 正常了。

P.S:我不明白为什么这个问题得到了低票,因为它简洁明了+答案终于没那么难了。