执行adb remount的时候失败了,提示remount failed: Operation not permitted
1. 确定是否正确连接
adb devices
2. 进入shell
adb shell
3. shell中输入命令(命令最前面的#号不用输入)
# su # mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system # chmod 777 /system # exit
本文介绍了当使用ADB命令进行remount操作时遇到失败的情况,提供了详细的步骤来解决问题,包括检查设备连接状态、进入shell模式并执行特定命令来重新挂载文件系统。
执行adb remount的时候失败了,提示remount failed: Operation not permitted
1. 确定是否正确连接
adb devices
2. 进入shell
adb shell
3. shell中输入命令(命令最前面的#号不用输入)
# su # mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system # chmod 777 /system # exit
4294

被折叠的 条评论
为什么被折叠?