操作设备文件系统上的文件结果遇到 ”… Read-only file system”。
解决办法:
1. 最简单的,adb remount
2. 不行的话,adb shell su 之后将文件系统 remount 为读写权限: mount -o remount rw /system。出于安全考虑,记得完事后 remount 回只读:mount -o ro,remount /system
3. 和方法 2 类似,mount -o rw,remount -t ext3 /dev/block/mmcblk1p21 /system
正文完
发表至: 未分类
2014-09-28