Re: Executing scripts on the remote machine
- From: markoa <marko.anastasov@xxxxxxxxx>
- Date: 22 Apr 2007 11:24:59 -0700
On Apr 22, 7:50 pm, s...@xxxxxxxxxxxxxxxxx (Douglas Wells) wrote:
In article <1177249488.426716.138...@xxxxxxxxxxxxxxxxxxxxxxxxxxx>, Nico <nka...@xxxxxxxxx> writes:
On 22 Apr, 13:15, markoa <marko.anasta...@xxxxxxxxx> wrote:
On Apr 22, 4:02 am, Unruh <unruh-s...@xxxxxxxxxxxxxx> wrote:
markoa <marko.anasta...@xxxxxxxxx> writes:
I'm trying to run a configure script located on a remote server.
I login, cd, and try to run './configure', but get:
./configure: not found
ls -la ./configure
What does that command return?
-rwxr-xr-x 1 admin wheel 60813 Apr 21 15:41 ./configure
Being new to this, I don't know what else to try. (The file is
executable,
specifying a complete path does not help; it's a POSIX shell on
FreeBSD
through ssh.
It should work. Can you test another shell script? Or is the partition
mounted in some odd fashion?
There are a few more things to try.
Running a shell script means that two programs have to exist, both
the script itself and the shell interpreter. Problems with either
will cause problems, possibly resulting your error message: not found.
I've seen numerous scripts with "all the world is Linux" syndrome.
Have a look at the look at the first line of your configure
script. It should say "#!/bin/sh" or something very similar.
Common errors are for it to say "#!/usr/bin/sh" or "#!/bin/bash"
or "#!/usr/bin/bash". All of these are likely to cause problems
on at least some systems, possibly including yours.
Just as an experiment, try the following:
/bin/sh ./configure
- dmw
It is "#!/bin/sh". /bin/sh ./configure works. Thank you all!
Marko
.
- Follow-Ups:
- Re: Executing scripts on the remote machine
- From: Nico
- Re: Executing scripts on the remote machine
- References:
- Executing scripts on the remote machine
- From: markoa
- Re: Executing scripts on the remote machine
- From: Nico
- Re: Executing scripts on the remote machine
- From: Douglas Wells
- Executing scripts on the remote machine
- Prev by Date: Re: Executing scripts on the remote machine
- Next by Date: ARCFOUR and initialization vectors
- Previous by thread: Re: Executing scripts on the remote machine
- Next by thread: Re: Executing scripts on the remote machine
- Index(es):
Relevant Pages
|