[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: #! /bin/sh bash problem
From: |
Bob Proulx |
Subject: |
Re: #! /bin/sh bash problem |
Date: |
Sat, 29 Mar 2008 22:35:58 -0600 |
User-agent: |
Mutt/1.5.13 (2006-08-11) |
John B. Brown wrote:
> Description: Attempting to run 'configure', or any shell
> script with #! /bin/sh, results in the error message:
>
> "bash: ./configure: /usr/bin/bash: bad interpreter:
> Permission denied"
I suspect that the permissions on /usr/bin/bash are preventing you
from running it. What does this following say?
ls -ld /usr/bin/bash
Also, /usr/bin/bash is not a normal location for bash. Normally bash
would reside in /bin/bash . Perhaps you also have one there?
ls -ld /bin/bash /usr/local/bin/bash
Bob