Linux下使用Fastboot给手机刷ROM
前言
一直在刷机、失败、刷机、失败中,还好今天有个任务可以使用fastboot刷机,好开心,终于不用切换系统了。(话说好久没有写代码了,身为一个互联网程序员,不写代码我容易紧张)。
开发环境
Ubuntu13.10,配置好Android的开发环境即可。具体配置可参考:http://blog.csdn.net/wzy_1988/article/details/37737255
Fastboot模式刷机
使用fastboot刷机主要是刷boot.img、system.img和userdata.img文件,下面分别介绍一下对应的刷机命令。以下所有命令均需要使用sudo命令提权。
进入Fastboot模式
首先,确保你的手机能够adb连接,然后通过adb执行如下指令进入Fastboot模式,命令如下:
sudo adb reboot-bootloader
稍等片刻,手机会重启进入Fastboot模式,查看通过如下命令进行确认:
sudo fastboot devices
刷img文件
1. 刷recovery.img指令
sudo fastboot flash recovery recovery.img
2. 刷boot.img指令
sudo fastboot flash boot boot.img
执行结果:
sending 'boot' (8628 KB)...OKAY [ 0.483s]writing 'boot'...OKAY [ 0.734s]finished. total time: 1.225s
3. 刷system.img指令
sudo fastboot flash system system.img
执行结果:
erasing 'system'...OKAY [ 0.829s]sending 'system' (648865 KB)...OKAY [ 20.588s]writing 'system'...OKAY [ 44.143s]finished. total time: 65.585s
4. 刷userdata.img指令
sudo fastboot flash userdata userdata.img
执行结果:
erasing 'userdata'...OKAY [ 7.427s]sending 'userdata' (179803 KB)...OKAY [ 5.881s]writing 'userdata'...OKAY [ 11.874s]finished. total time: 25.182s
5. 重启手机即可
sudo fastboot reboot
后记
img文件没问题的话,刷完重启后就可以看到新的系统了,enjoy!
赞 (0)