操作AVD文件系统上的文件时遇到"... Read-only file system"。

解决办法:

将AVD sdcard挂载为读写权限:

在doc下执行:adb -s emulator-xxxx shell,然后执行: mount -wo remount rootfs /sdcard将文件系统remount为读写权限。

改回只读权限:

在doc下执行:adb -s emulator-xxxx shell,然后执行: mount -ro remount rootfs /sdcard将文件系统remount为只读权限。

相关文章:

  • 2021-10-02
  • 2021-11-19
  • 2021-08-18
  • 2021-11-24
  • 2022-12-23
  • 2022-12-23
  • 2022-01-13
猜你喜欢
  • 2021-06-01
  • 2022-12-23
  • 2022-12-23
  • 2021-09-03
  • 2021-12-15
  • 2022-02-11
相关资源
相似解决方案