android adb shell 中的 chmod 无法使用 root 权限

android adb shell 中的 chmod 无法使用 root 权限
shell@android:/system/etc/wifi # 
shell@android:/system/etc/wifi # ls -l  
-rw-r--r-- root     root          326 2013-12-19 14:37 p2p_supplicant.conf
-rw-r--r-- root     root          282 2013-12-19 14:37 wpa_supplicant.conf
shell@android:/system/etc/wifi # echo 'hello' > file.txt                       
sh: can't create file.txt: Read-only file system
1|shell@android:/system/etc/wifi # 

为什么它不工作..?

答案1

您的 PC/笔记本电脑/... 上的 root 权限与您智能手机上的文件系统完全无关。

所以

adb root;
adb shell mount -o rw,remount /;

相关内容