使用adb shell命令,但android下的shell是阉割了的 不能用-R参数 既使su到root帐号也执行不了
C:\Documents and Settings\Administrator>adb shell
shell@umts_spyder:/$ su
su
root@umts_spyder:/# chmod 777 -R /data
chmod 777 -R /data
Unable to chmod -R: No such file or directory
root@umts_spyder:/#
只能一个一个文件夹去设置权限
root@umts_spyder:/# chmod 777 /data
chmod 777 /data
root@umts_spyder:/# chmod 777 /data/data
chmod 777 /data/data
root@umts_spyder:/#
chmod 777 /data
root@umts_spyder:/# chmod 777 /data/data
chmod 777 /data/data
root@umts_spyder:/#
ADB Shell权限修改限制
本文介绍了在Android设备上使用ADB shell命令时遇到的问题,特别是尝试使用root权限递归更改/data目录下文件权限的方法及遇到的限制。
1917

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



