Android emulator error: 'Not enough memory in emulator'
I'm trying to install rsyncdroid ap开发者_开发技巧p in my emulator using the following steps:
$ ./adb push rsync /sdcard/rsync
$ ./adb shell mount -o remount,rw /system
$ ./adb shell "cat /sdcard/rsync > /system/bin/rsync"
$ ./adb shell chmod 755 /system/bin/rsync
$ ./adb shell mount -o remount,ro /system
I'm getting stuck on step 2, which results in the error:
cannot create /system/bin/rsync : not enough memory in emulator
The System partition of the standard avd's have not much free space. You can start the emulator on the command line, adding the following parameter:
-partition-size <size>
alternatively you can also declare the partition size in the command line options of your android run/debug configuration in eclipse.
Have you created new AVD ?? Use SDKManager to create new AVD. and assign 1000 MB to SDCard
精彩评论