首页 / 操作系统 / Linux / 向Android模拟器中复制文件报out of memory错误解决
在Android开发过程中,要经常用到模拟器原因:用Elcipse或者是android sdk下的程序启动的模拟器,都会报这个错.试试直接在命令行下输入emulator -avd 你创建的avd名字(比如android2.1) -partition-size 128启动.然后在复制文件就不会有问题了.英文原文:As android developer, if you use the following command like:adb push file /system/..and meet problems like “failed to copy file to /system/…”, such as:failed to copy ‘file’ to ‘/system/…’: No space left on device
failed to copy ‘file’ to ‘/system/…’: Out of memoryThe resolve method is not using the Eclipse or AVD Manager to start the Android emulator, but by use the command first:www.linuxidc.com$emulator -avd youravdname -partition-size 128Then you can try the command “adb push file /system/…”, and the problem maybe resolved.