1.官方recovery
开机进到Recovery模式下,有以下两行:
wipe data/factory reset
wipe cache partition
通常机油们会认为双清就是上述功能指令各运行一次
其实不然
前者格式化/data(程序数据)和/cache(系统缓存)两个分区
而后者仅格式化/cache这一个分区
所以刷机前仅需运行第一行功能指令即可
第二行通常单单是用来释放缓存空间的
还有/sd-ext和/sdcard/.android_secure这两个分区
相信很多小白都没意识到这一点吧
真正的双清在双WIPE后
再点mounts and storage
这里才是能实现真正双清的地方
--mount /system 挂载/system分区(系统分区)
--mount /data 挂载/data分区(数据分区)
--mount /cache 挂载/cache分区(缓存分区)
--mount /sd-ext 挂载/sd-ext分区(A2SD分区)
--format boot 格式化内核分区
--format system 格式化系统分区
--format data 格式化数据分区
--format cache 格式化缓存分区
--format sdcard 格式化存储卡(会格式化SD卡,谨慎使用)
--format sd-ext 格式化SD卡分区(就是分区后,系统占用SD卡的那一部分空间)
--mount USB storage 挂载SD卡为U盘模式
|