一、问题描述

如下图,Google Nexus 6刷机刷残了,开机就是这个界面,┭┮﹏┭┮…
度娘说是系统损坏,导致不可信,然后我按了【电源键】,手机直接关机!!!

二、解决方案

1. 准备工作

(1)准备一个配置好adb和fastboot工具的PC机,adb tools工具下载链接Win 7环境配置教程&Win 10环境配置教程
(2)手机和电脑可通过USB连接,并可进入Fast Boot Model。
(3)下载Google Nexus 6的系统镜像,例 shamu-mra58k-factory-0c8cee76.zip,下载链接

2. 系统安装

做好准备工作后,解压镜像文件,开始下述步骤。

# 命令行进入fast boot model,如无效,可将手机关机后,同时按【电源键】+【音量下键】。
adb reboot bootloader 
# 若机器是15年以前生产,执行以下命令
fastboot flashing unlock
# oem解锁
fastboot oem unlock
# 双击解压包中flash-all脚本文件,自动执行系统安装

若上述过程执行完毕,仍无法正常开机,解压image-xxxx-xxxx.zip文件,进入解压后的文件夹,执行以下步骤。

# 依次安装下述镜像
fastboot flash recovery recovery.img
fastboot flash boot boot.img
fastboot flash system system.img
fastboot flash cache cache.img
fastboot flash userdata userdata.img
# 手机重启
fastboot reboot

执行过程中,命令窗提示如下。

PS D:\adk\platform-tools\shamu-lrx21o-factory-ef423ec5\shamu-lrx21o\image-shamu-lrx21o> fastboot flash recovery recovery.img
(bootloader) has-slot:recovery: not found
(bootloader) is-logical:recovery: not found
Sending 'recovery' (8198 KB)                       OKAY [  0.339s]
Writing 'recovery'                                 OKAY [  0.115s]
Finished. Total time: 0.551s
PS D:\adk\platform-tools\shamu-lrx21o-factory-ef423ec5\shamu-lrx21o\image-shamu-lrx21o> fastboot flash boot boot.img
(bootloader) has-slot:boot: not found
(bootloader) is-logical:boot: not found
Sending 'boot' (7624 KB)                           OKAY [  0.283s]
Writing 'boot'                                     OKAY [  0.109s]
Finished. Total time: 0.530s
PS D:\adk\platform-tools\shamu-lrx21o-factory-ef423ec5\shamu-lrx21o\image-shamu-lrx21o> fastboot flash system system.img
(bootloader) has-slot:system: not found
(bootloader) is-logical:system: not found
Sending sparse 'system' 1/4 (524141 KB)            OKAY [ 16.985s]
Writing 'system'                                   OKAY [  7.741s]
Sending sparse 'system' 2/4 (508171 KB)            OKAY [ 16.467s]
Writing 'system'                                   OKAY [  7.052s]
Sending sparse 'system' 3/4 (519106 KB)            OKAY [ 16.827s]
Writing 'system'                                   OKAY [  7.368s]
Sending sparse 'system' 4/4 (88808 KB)             OKAY [  2.867s]
Writing 'system'                                   OKAY [  1.184s]
Finished. Total time: 76.674s
PS D:\adk\platform-tools\shamu-lrx21o-factory-ef423ec5\shamu-lrx21o\image-shamu-lrx21o> fastboot flash cache cache.img
(bootloader) has-slot:cache: not found
(bootloader) is-logical:cache: not found
Sending 'cache' (6248 KB)                          OKAY [  0.276s]
Writing 'cache'                                    OKAY [  0.149s]
Finished. Total time: 0.524s
PS D:\adk\platform-tools\shamu-lrx21o-factory-ef423ec5\shamu-lrx21o\image-shamu-lrx21o> fastboot flash userdata userdata.img
(bootloader) has-slot:userdata: not found
(bootloader) is-logical:userdata: not found
Sending 'userdata' (138868 KB)                     OKAY [  4.478s]
Writing 'userdata'                                 OKAY [  3.024s]
Finished. Total time: 7.601s
PS D:\adk\platform-tools\shamu-lrx21o-factory-ef423ec5\shamu-lrx21o\image-shamu-lrx21o> fastboot reboot
Rebooting                                          OKAY [  0.000s]
Finished. Total time: 0.004s

至此,手机可正常开机!!!

内容靠得住,关注不迷路。
在这里插入图片描述

Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐