I am getting per开发者_StackOverflow社区mission denied error in linux fedora while using ./newmkapp command. The error message is -- bash: ./newmkapp: Permission denied..
check your file permissions with
ls -l
It should look something like this
-rwxr-xr-x 1 jcpennypincher staff 55 5 Jul 2010 newmkapp
if you are not the owner you can use
chown username:username newmkapp
to change ownership, or you can make the file executable by other if you are not the owner or in the group that owns the file.
chmod 755 newmkapp
Easier to remember than numerical permissions:
chmod a+x newmkapp
Voila ;)
精彩评论