views:

34

answers:

3

First steps in FreeBSD: trying to run my installation script. Fast help needed:

# ls
configure
# file configure
configure: Bourne-Again shell script text executable
# ./configure
./configure: Command not found
# configure
configure: Command not found

What is wrong, how can I execute this script?

A: 

Do you have bash installed? If not use FreeBSD Ports to install it. Use where bash to find out.

Lolindrath
Really, bash is not installed. I guess I need to ask in SuperUser for details. Thank you.
Alex Farber
A: 

Use the force Luke :)

# pkg_add -r bash
include
A: 

May it be, that your's configure script doesn't have appropriate executions rights. Try to cast:

chmod 777 configure

If it works, fix it to

chmod 764 configure
deklin