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

后端 未结 6 2082
青春惊慌失措
青春惊慌失措 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条回答
  •  猫巷女王i
    2020-11-28 20:36

    In case anyone has the same problem in the future:

    $ adb shell
    $ su
    # mount -o rw,remount /system
    

    Both adb remount and adb root don't work on a production build without altering ro.secure, but you can still remount /system by opening a shell, asking for root permissions and typing the mount command.

提交回复
热议问题