You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@nutch.apache.org by Jon Blower <jd...@mail.nerc-essc.ac.uk> on 2006/03/01 11:25:29 UTC

RE: Re[2]: Problems with hadoop

My guess is that the "source" program is not available on your version of
FreeBSD.  Try running the "source" program (with no arguments) from the
command line or type "man source".  Do you see anything?  If not, you
probably don't have the "source" program, which is called by the hadoop
script.

Jon 

> -----Original Message-----
> From: Dima Mazmanov [mailto:nuther@proservice.ge] 
> Sent: 01 March 2006 11:16
> To: Jon Blower
> Subject: Re[2]: Problems with hadoop
> 
> Hi,Jon.
> 
> I'm running on FreeBSD 6.0.
> And version of nutch is 26 February
> You wrote 28 февраля 2006 г., 21:22:05:
> 
> > Hi Dima,
> 
> > We probably need more information here.  What kind of 
> system are you 
> > running on and which version of the software did you download?
> 
> > Regards, Jon
> 
> >> -----Original Message-----
> >> From: Dima Mazmanov [mailto:dima@proservice.ge]
> >> Sent: 28 February 2006 07:16
> >> To: nutch-user@lucene.apache.org
> >> Subject: Problems with hadoop
> >> 
> >> I have a problem during executing hadoop scripts 
> ./start-all.sh gives 
> >> me following
> >> 
> >> source: not found
> >> Password:
> >> 
> >> What does it mean??? what kind of source wasn't found, and what 
> >> password I must type?
> >> I configured ssh like it was written it tutorial, but with 
> no result.
> >> Could you tell me what am I doing wrong?
> >> Thanks.
> >> Regards, Dima
> >> 
> 
> 
> 
> > __________ NOD32 1.1420 (20060227) Information __________
> 
> > This message was checked by NOD32 antivirus system.
> > http://www.eset.com
> 
> 
> 
> 
> --
> Regards,
>  Dima                          mailto:nuther@proservice.ge
> 
> 
> 


Re: Problems with hadoop

Posted by Doug Cutting <cu...@apache.org>.
Jon Blower wrote:
> My guess is that the "source" program is not available on your version of
> FreeBSD.  Try running the "source" program (with no arguments) from the
> command line or type "man source".  Do you see anything?  If not, you
> probably don't have the "source" program, which is called by the hadoop
> script.

The "source" command is a shell builtin which effectively inserts the 
content of another shell script within a shell script, so that the 
"source"d script can, e.g., set local variables, etc.

Doug