How can I remount my Android/system as read-write in a bash script using adb?

后端 未结 8 1282
半阙折子戏
半阙折子戏 2020-12-23 17:27

For info

adb remount 

returns \"remount failed: Operation not permitted\"

adb shell \'su -c  mount -o rw,remo         


        
8条回答
  •  情歌与酒
    2020-12-23 17:48

    The following may help (study the impacts of disable-verity first):

    adb root
    adb disable-verity
    adb reboot
    

提交回复
热议问题