转自http://stackoverflow.com/questions/2083709/android-emulator-sdcard-push-error-read-only-file-system
$./adb shell
$su
mount -o rw,remount rootfs /
chmod 777 /mnt/sdcard
exit
本文介绍了解决Android模拟器中SD卡出现的只读错误的方法。通过使用adb shell进入系统,并以管理员权限运行命令来重新挂载文件系统,接着更改SD卡的权限设置,最终成功解决了该问题。
转自http://stackoverflow.com/questions/2083709/android-emulator-sdcard-push-error-read-only-file-system
$./adb shell
$su
mount -o rw,remount rootfs /
chmod 777 /mnt/sdcard
exit

被折叠的 条评论
为什么被折叠?