AIX 0403-006 Execute permission denied -


I am using a shell script on AIX.
I have allowed execution to use chmod - however, I am having the following error:

ksh: ./getcwd.exe: 0403-006 Execution Permission Denied .

Any ideas?

Assume the program that you are trying to run Runcwd.exe, run the file command on it .

The file getcwd.exe

This will give you the idea of ​​what type of file. If * Output says that RISC system / 6000 or 64-bit xkop is executable, then it may be compiled for Ax.
* If this DOS or ALF-386 is executable, then it will not run on AX. It was compiled to run on Intel x86 compatible processors.
* If this shell says executable or command text, then it should be run, but you may have to specify the shell interpreter to run it, for example:

ksh getcwd. Exe

In your case, it seems that you are running a script that calls getcwd.exe. In this case, the script can be executable (executable), but the executable bits can not be set on getcwd.exe. You will also need to get chmod getcwd.exe (assuming this is a program that can usually be run on AIX).


Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -