adb remount permission denied, but able to access super user in shell — android

后端 未结 6 2083
青春惊慌失措
青春惊慌失措 2020-11-28 19:37

so, i\'m trying to push some files to /system on android device (zte) I\'ve rooted, connected with ADB,

adb remount -> I get permission denied adb shell su -> I\'m

6条回答
  •  甜味超标
    2020-11-28 20:22

    Try

    adb root
    adb remount
    

    to start the adb demon as root and ensure partitions are mounted in read-write mode (the essential part is adb root). After pushing, revoke root permissions again using:

    adb unroot
    

提交回复
热议问题