I can't execute programs in my current directory

As a security precaution, most systems come pre-configured to not include the current directory in your path. The lazy way out is to add "." to your path, but I strongly recommend against doing that (particularly if you are running as root).

The right way to handle this situation is to preface the program name with "./". For example, type "./configure" instead of "configure".