简体   繁体   English

adb shell mount -o remount,rw -t yaffs2 / dev / block / mtdblock0 / system不允许操作

[英]adb shell mount -o remount,rw -t yaffs2 /dev/block/mtdblock0 /system Operation not permitted

i have put this command but facing this problem 我已经输入了此命令,但是面临这个问题

Operation not permitted 不允许操作

 adb shell mount -o remount,rw -t yaffs2 /dev/block/mtdblock0 /system  

and this error is shown 并显示此错误

Operation not permitted

You have to be a root to remount /system . 您必须是root才能重新挂载/system

Check is this true by id command. 通过id命令检查是否为真。

I guess you have only permissions of user- shell 我猜你只有用户shell权限

add If you are really root - you may try adb remount command. 添加如果你真的根-您可以尝试adb remount命令。 This command is exactly what you are looking for. 该命令正是您要寻找的。

What I found worked for me on a rooted device 我发现在植根设备上为我工作的东西

adb shell 亚行外壳

su

abd mount -o remount,rw {whatever options you want} abd mount -o remount,rw {所需的任何选项}

su didn't ask for a password su没有要求输入密码

If you have rooted phone then go to terminal and hit the below command to get all access 如果您已扎根手机,请转到终端并按以下命令获取所有访问权限

mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system 安装-o重新安装,rw -t yaffs2 / dev / block / mtdblock3 / system

This helped me 这对我有帮助

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM