NAND: could not create temp file for system NAND disk image: Permission denied
If you find yourself running into this when trying to run your Android application through Eclipse, it means your user doesn’t have write and execute permissions on the “android” folder in your temp folder (e.g. /tmp/android). If you have multiple people developing on the same machine you could create a group that all developers belong to and give that group rights to that folder (chmod 774 /tmp/android) or just allow all users full access to that folder (chmod 777 /tmp/android).
执行 #chmod 777 /tmp/android -R 即可
http://androidstudy.javaeye.com/blog/832556