Android如何让system分区可读写(MTK安卓6.0)
Android 系统默认情况下,system 分区是只读 mount 的,因为无法进行往里写数据的,可 以用 adb 命令 adb remount 重新 mount 一下。 也可以通过在板子上,输入以下命令重新mount一下system分区命令使其可读可写。 # mount -o remount /dev/block/mmcblk0p2 /system 不过上面的命令只是在当前的启动有效,重启就恢复为只读了,如果要永久可读写,只能修改源码中的文件: device\mediatek\mt8127\fstab.mt8127 打开后看到: # Android fstab file. #<src> <mnt_point> <type> <mnt_flags and options> <fs_mgr_flags> # The filesystem that contains the filesystem checker binary (typically /system) cannot # specify MF_CHECK,...