目标或问题:
在可root的设备中,如何将某个文件拷贝到system/xxxx/xxxx的系统目录下?
解决方法:
首先依次执行以下命令:
adb root
adb remount
出现如下图所示:
然后执行复制文件推送到设备的命令即可:
例如:
adb -s 192.168.xx.xx push F:\temp\Download\Download\testFile.txt /system/etc/security/xxx
至此,应该就可以成功复制过去了。
目标或问题:
在可root的设备中,如何将某个文件拷贝到system/xxxx/xxxx的系统目录下?
解决方法:
首先依次执行以下命令:
adb root
adb remount
出现如下图所示:
然后执行复制文件推送到设备的命令即可:
例如:
adb -s 192.168.xx.xx push F:\temp\Download\Download\testFile.txt /system/etc/security/xxx
至此,应该就可以成功复制过去了。