On Mon, 2004-02-23 at 18:14, arundeep s wrote: > hello all > > i am trying to compile a file placed on partition > (/mnt/extra) other than / or /home. this partition is > of ext3 type. > > now i am trying to compile a java code on /mnt/extra > but it says sme class file is not found. but if i > keep the same file on /home directory it compile > without any error. so the problem is with i guess the > environment variable CLASSPATH. > > so where ( file) i should set it so that this problem > get solved. i don't have setenv command on my system > also
First off to provide any help you will have to tell us how did you install java? Then you have to provide the output of something like this "env | grep -i CLASSPATH". This should be executed as the user you are trying to compile the java program as. Which java are you using whether the sun jdk or something else? What did you download the rpm version or something else? Which distribution of Linux are you using? Finally you do have the setenv but since it is a "csh" shell built in command it will only be invoked after you have changed your shell to csh from bash. But that is a whole different ball game. At the moment your friend for exporting variables is "export" which is kind off the bash equivalent of setenv or try "man bash" and in that search for "set" and "unset" or you can try "env". -- Arindam Dey The mind is not a vessel to be filled but a fire to be kindled. GPG FPR: B8E3 219E F129 F970 F4A7 BC50 9636 504A BEDF 5739 _______________________________________________ ilugd mailinglist -- [EMAIL PROTECTED] http://frodo.hserus.net/mailman/listinfo/ilugd Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi http://www.mail-archive.com/[EMAIL PROTECTED]/
