bash: ./a.out: Permission denied

Joe Zeff joe at zeff.us
Wed Oct 19 17:08:30 UTC 2011


On 10/19/2011 09:50 AM, shailesh wrote:
> when i try to run compiled c program ("./a.out") get error
> bash: ./a.out: Permission denied

Files aren't automatically executable under Linux.

chmod u+x a.out
./a.out

will get you what you want.


More information about the users mailing list