On Wed, 2004-06-09 at 14:29, david wrote: > Hi there, > > > Im trying 2 compile this java sdk in FD1 but it doesnʼt work. > > How do we set the PATH variable in linux??? If your talking about the standard bash path in bash then export PATH=blah:blah:blah If you do not want to overwrite the existing path variable and just want to append to it, export PATH=$PATH:blah:blah:blah Type env, to get a list of the current environment variables. Doug