OnePlus8Pro使用
重要软硬件操作
-
关机、重启:音量键上+关机键
-
强制关机:音量键上+下+关机键保持10s
-
刷机前请备份Persist分区(该分区保存外置传感器的校准数据,在某些安卓手机中,还会保存Wi-Fi芯片的MAC地址),一加8Pro丢失该分区会造成指纹录入出问题。
降级
恢复模式(Recovery)
请参考OnePlus8/8Pro恢复模式(Recovery)。
刷入Magisk完成Root
先刷入临时TWRP,然后刷入"Magisk_10.0_buding.zip"。开机后看到Magisk就root成功。
Root后可用Apps
绿色守护
Root后,不推荐使用黑阈,在我使用一加5时,黑阈还没商业化,那时候用起来很安静,操作很简单,现在商业化后感觉变得不好用了,加上黑阈也推荐root后使用绿色守护。
钛备份
Android10可用钛备份Titanium Backup-Pro-v8.3.3_build_414.apk。使用Android 10又多一个理由。
Magisk Hide
交通银行会提示root不安全,然后强制退出银行APP,这时候使用Magisk Hide对银行APP进行隐藏即可。如果隐藏失效,清除银行APP数据,隐藏设置后,重启手机即可。
内核(Kernel)
管理Persist分区
Google Play下载并使用Partitions Backup & Restore完成Persist分区备份或还原。
请确保以下条件再运行指令完成备份操作:
- ADB已安装
- 手机开发者模式,开启USB调试
- 连接手机到电脑
1 | adb shell |
备份文件在手机存储中,可通过文件管理器找到。
确保手机存储根目录存在persist.img,再运行指令完成还原操作:
1 | adb shell |
在临时TWRP终端上输入以下指令完成备份
1 | dd if=/dev/block/bootdevice/by-name/persist |
备份文件在手机存储中,可通过文件管理器找到。
在临时TWRP终端上输入以下指令还原操作
1 | dd if=/sdcard/persist.img of=/dev/block/bootdevice/by-name/persist |
相关参考
标题 | 链接 |
---|---|
Persist.img file - OnePlus Community | https://forums.oneplus.com/threads/persist-img-file.1220975/ |
Fix fingerprint enrollment issues on the OnePlus 8 series, 7T Pro, more | https://www.xda-developers.com/fix-fingerprint-enrollment-issues-broken-persist-partition-oneplus-8-pro/ |
救砖
什么是变砖
变砖有两种:软变砖和硬变砖。
可以进入恢复模式和FastBoot的都是软变砖。
不可以进入恢复模式和FastBoot的都是硬变砖。
变砖英文释义
- Soft-brick: When rebooting normally, your phone may bootloop, get stuck at the bootscreen or be blank after the bootscreen. You CAN access recovery and/or fastboot.
- Hard-brick: When rebooting normally, your phone may get stuck at the OnePlus logo, have a blank screen, vibrate or simply show no signs of life. You CANNOT access recovery or fastboot.
救砖环境准备
可以参考【资源组】一加手机全系列9机型线刷救砖资源★附教程 - 资源共享 - 一加手机社区官方论坛。
环境准备:高通驱动+ADB+Fastboot+一加驱动
你需要找个线刷包刷入就可以完成救砖:五小时仅耗电2%,一加8最省电版本,手把手教你刷起来 - OnePlus 8 系列 - 一加手机社区官方论坛
ROMs
想要刷入其他作者的ROM,可以参考一加社区中的第三方ROM专区。
个人建议:短期体验下新鲜感没问题,长期稳定使用的话,请选择H2OS 10.5.12.IN11。
一加社区ROMs搬运自XDA社区,因此有英语阅读基础的机油可以参考XDA社区。
[ROM][11][OnePlus8] PixelExperience [AOSP] | XDA Developers Forums
ADB使用
ADB的使用包括安装ADB,关闭下拉通知栏烦人的系统更新提示,解锁设备,进入刷机模式等。
点击查看ADB使用
请参考Using ADB and fastboot | LineageOS Wiki。
下载ADB驱动:Universal ADB Drivers。UniversalAdbDriver中包含ADB和fastboot。
请确保以下条件再运行指令:
- ADB已安装
- 手机开发者模式,开启USB调试
- 连接手机到电脑
1 | 列出已连接的设备,一旦连接成功就会列出设备状态 |
请确保以下条件再运行指令:
- ADB已安装
- 手机开发者模式,开启USB调试和OEM解锁
- 连接手机到电脑
1 | #进入刷机模式 |
请确保以下条件再运行指令:
- ADB已安装
- 手机开发者模式,开启USB调试
- 连接手机到电脑
1 | #重启手机到Fastboot模式 |
Android分区结构
Android分区及对应分区的作用如下:
1 | ┌─────────────┬───────────────────────────┐ |
相关参考
标题 | 链接 |
---|---|
4.0 ice cream sandwich - Android Folder Hierarchy - Android Enthusiasts Stack Exchange | https://android.stackexchange.com/questions/46926/android-folder-hierarchy |
Making sense of your Android phone’s storage folders | https://www.androidauthority.com/phone-storage-folders-explained-744100/#:~:text=Storage hierarchy,as their own memory partition. |
Android partitions explained | XDA Developers Forums | https://forum.xda-developers.com/t/android-partitions-explained.3657183/ |
Fastboot
我们的安卓系统是烧录在手机的Flash内存模块中。而Fastboot是一种可以用来直接读写位于Flash内存模块中的各个分区的工具。当然,Fastboot工具还可以用来挂载内核映像或者root文件系统映像。
Fastboot工具提供一些fastboot指令,使用这些指令就可以操作安卓分区和挂载映像了。
常用的fastboot指令如下
1 | #查看设备 |
什么是vendor.img
Every device needs drivers to operate components like GPS, gyro, proximity, and other sensors, right? Developers would have to account for those drivers in their software. Drivers used to be under the system partition. Every app has to locate those drivers independently. Putting device-specific drivers in vendor.img consolidates all that trouble. Plus, as an app developer, I don’t have to pay somebody a license fee to use that trademarked camera or GPS. Vendor images contain device-specific hardware drivers, and universal for all apps within my smart phone or tablet. A ROM developer can create universal ROMs for multiple devices, then users can apply the appropriate vendor images for their own devices. [Ref.]
移动设备都有传感器,比如GPS,NFS,红外等等传感器,这些传感器都需要适配驱动后,APP才能调用它们,因此vendor.img存放适配了特定机型的硬件驱动程序。
制作可用Fastboot刷入的一加工厂镜像
点击查看制作可用Fastboot刷入的一加工厂镜像教程
通过payload dumper提取卡刷包的img映像文件,这些文件都可用于在软变砖下(只可进入恢复模式和Fastboot的状态下)使用。
OnePlus8ProH2OS_10.5.12_Fastboot-flashableImages.zip我放在百度网盘上了,所有映像提取自一加8P的H2OS 10.5.12版。所有映像还没全刷入过,不过"fastboot flash boot boot.img"测试过,可以刷回10.5.12的官方内核。
具体刷入命令如下
1 | fastboot flash boot boot.img |
如果你需要清空/data分区(即存放APP数据和用户数据的分区),
1 | fastboot -w |
刷入完了就重启手机
1 | fastboot reboot |
专业术语
词汇 | 英文描述 | 中文描述 |
---|---|---|
OTA | An over-the-air (OTA) update is the wireless delivery of new software, firmware, or other data to mobile devices. | OTA是一种基于无线传输的更新方式,用于推送新软件、固件或其他数据到移动设备上。 |
Firmware | Permanent software programmed into a read-only memory. | 固件包,比如将ROM烧录到手机设备的Flash内存中。Flash内存不同与RAM,通过将Flash内存的固件读入到RAM中,实现系统的加载。 |