操作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为只读权限。
时间: 2024-11-13 17:05:51