adb remount失败 - mount:'system'不在/ proc / mounts中

问题描述 投票:4回答:1

我尝试了stackoverflow和online中提供的所有命令和建议,但都没有

还有更多,但没有什么对我有用

我收到以下错误 - 下面的命令都没有工作。

$adb root
$adb disable-verity

对于

$adb remount
remount of / failed: Permission denied
remount failed

那么我尝试使用不同的命令

$ adb shell mount -o rw,remount /system
mount: '/system' not in /proc/mounts

$ adb shell mount -o rw,remount /
'/dev/root' is read-only


$ adb shell  mount -o rw,remount -t /dev/block/stl12 system
mount: 'system' not in /proc/mounts

$ adb shell "su 0 mount -o rw,remount /system"
mount: '/system' not in /proc/mounts

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

 mount: '/system' not in /proc/mounts
android bash adb mount
1个回答
0
投票

我在Android API 28上遇到过这个问题。

周转是使用较低版本的Android API级别24。一切都行之有效。

ADV

$ adb shell
generic_x86:/ # mount -o rw,remount /system
generic_x86:/ # exit
[~]
$ adb push /etc/hosts /system/etc/hosts
/etc/hosts: 1 file pushed. 2.2 MB/s (7458 bytes in 0.003s)
© www.soinside.com 2019 - 2024. All rights reserved.