Android出现Read-only file system 解决方法

操作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为只读权限。

posted @ 2014-11-06 15:35  第壹时间  阅读(6487)  评论(0编辑  收藏  举报