First of all, thanks for the prompt reply of Marc Feeley. I tried that, according to his answer there are four steps.
The first one: ./configure works fine
Then when I type: $make the system answers: /bin/ksh: make: not found
If I type: $whoami
The system answers again: /bin/ksh: whoami: not found
What am I missing?
Any help will be really appreciated.
Thanks.
Alfonso
Afficher les réponses par date
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
On 3-Feb-07, at 2:02 AM, urrozalf@vcn.bc.ca wrote:
The system answers again: /bin/ksh: whoami: not found
What am I missing?
Any help will be really appreciated.
Sounds like your "PATH" is all screwed up. Get a UNIX manual and read about the "PATH" environment variable. You might also try:
% export PATH=/bin:/usr/bin:/usr/local/bin % whoami
Marc