Quote:
I'm trying to run a short program in Anjunta but I keep getting
that I don't have execution permission to run the program. What do I need to get execution permission?
|
Sometimes only root can run a program if it was not installed for everyone's use. You will need to run it as root by using 'sudo', example:
user@host-$ sudo /folder/anjunta
<Enter sudoer password> (it should run this way)
If not then it could be that the binary (executable) file lacked 'executable' permission, so you will set it as executable by adding the permission on the binary, that is--
user@host-$ sudo chmod ugo+x /folder/anjunta
<Enter password again>
Then try to run it again as previously given above.
Hope this helps.
Goodluck.