电脑端挂载手机所有分区为读写权限命令
adb shell busybox mount -r -w -o remount,rw -t rootfs rootfs /
1. 首先手机要求解锁并root,且有busybox
2. 电脑端打开cmd,输入adb remount(命令找不到的自己Google it),若弹出权限授理,点击允许
3. 电脑端打开cmd,输入adb shell busybox mount -r -w -o remount,rw -t rootfs rootfs / ,
这时候手机根目录已是读写权限,意味着整个手机分区已经是读写权限,enjoy!
PS: 有时候,adb shell mount -r -w -o remount,rw -t rootfs rootfs / ;效果会好了一些。
4. 这时候就可以通过adb push 命令向手机端输入文件,通过chmod 设置755或干脆777权限了。
如果希望修改完成后挂载回只读,则是adb shell busybox mount -r -w -o remount,ro -t rootfs rootfs / ;
PS: 有时候,adb shell mount -r -w -o remount,ro -t rootfs rootfs / ;效果会好了一些。
PS: 有些时候,直接挂载 rootfs 为读写权限,并没有把所有分区都挂载为读写,这个时候需要手动进行挂载单个分区来进行操作。