代码和注释python
adb shell #链接手机进入shell模式 #su root #若是你不root权限能够试着这个通常都是root cd /data/misc/user/0/cacerts-added #移动至于用户证书目录 mount -o remount,rw /system #将系统证书目录权限改为可读可写就能够移动文件否则不行 cp * /etc/security/cacerts/ #这里可使用cp也可使用mv mount -o remount,ro /system #移动完以后记得把权限改回只读