adb remount 相关
分类:Uncategorized
阅读 (2,301)
Add comments
3月 302018
1.adb remount的作用就是重新挂载安卓的系统分区,使系统分区可读写
2.执行该功能其他的方法:
adb shell su #进入安卓命令行
mount -o rw,remount /system #将文件系统remount为读写权限
记得完事后remount回只读: mount -o ro,remount /system
3.另外一种方法
adb shell su #进入安卓命令行
mount -o rw,remount -t ext3 /dev/block/mmcblk1p21 /system