-bash: ./configure: Permission denied

When I run the command ./configure in Ubuntu for installation of the siesta-3.2 software, bash complains with this: ./configure: Permission denied. How can I resolve this issue?

0

3 Answers

Try making ./configure executable.

In a terminal, cd into the directory where ./configure is (cd /path/to/configure/containing/folder), then run chmod +x configure, then try run ./configure as you were before.

1

There are many possibilities for this error:

  • This happens because you are trying to install from other drives. Copy the content in the home directory then try installing using ./configure. Also change the permission using chmod +x configure
  • Or you are trying to run the command on a mounted partition that had the "noexec" flag on.
1

It worked when I ran the following command on Ubuntu 16.04:

sh ./configure
1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like