使用android debug bridge remount时,它将系统文件夹更改为r / w,但是 一旦用户尝试使用android调试桥将某个文件复制到系统文件夹,它就会变为只读
答案 0 :(得分:0)
如果设备未植根,则无法将任何内容复制到系统或数据分区。
使用root在命令提示符或linux shell中执行以下命令,所有这些都应该没问题:
adb push fileName /data/local/tmp
adb shell
su
mount -o remount, rw /system
cp /data/local/tmp/fileName /system/folderOfYourChoise
chmod 644 (if its an apk and you want the system to use it as a system app)
exit (exits the su shell)
exit (exits the adb shell)
adb reboot (to apply and see changes on the device)