【Android】解決adb命令時mount: Permission denied

執行

adb shell mount -o rw remount /system

出現

mount: Permission denied

可能是因爲各設備的機型問題,嘗試加逗號的命令

adb shell mount -o rw,remount /system

如果依然出現mount: Permission denied,那麼嘗試以下方式:

adb root
adb shell

原理是先獲取到root權限再執行adb命令,接下來重複嘗試修改讀寫權限:

adb shell mount -o rw remount /system 或 adb shell mount -o rw,remount /system

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章