Android— Eclipse运行Emulator时提示权限不够解决方案(ubuntu 10.10)

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  即可


你可能感兴趣的:(eclipse,android,ubuntu,Access)