RE: how to set evn path

2002-03-06 Thread Arthur H. Johnson II
ll bite you in the butt. Setup /etc/sudoers they say to > use visudo but I find pico works just fine for editing this file. > > -Original Message- > From: Jianping Zhu [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, March 06, 2002 2:25 PM > To: Arthur H. Johnson II > Cc:

RE: how to set evn path

2002-03-06 Thread Paul Hamm
PM To: Arthur H. Johnson II Cc: [EMAIL PROTECTED] Subject: Re: how to set evn path It works, Thank you very much. One additional qustion is that: I am also root user, can I set the env in some way (do some thing to the .bash_prifile in root directory i guess)so every ordinay user can use java compiler

Re: how to set evn path

2002-03-06 Thread Arthur H. Johnson II
Put the command in /etc/profile On Wed, 2002-03-06 at 14:25, Jianping Zhu wrote: > It works, Thank you very much. > One additional qustion is that: I am also root user, can I set the env in > some way (do some thing to the .bash_prifile in root directory i guess)so > every ordinay user can use j

Re: how to set evn path

2002-03-06 Thread Jianping Zhu
It works, Thank you very much. One additional qustion is that: I am also root user, can I set the env in some way (do some thing to the .bash_prifile in root directory i guess)so every ordinay user can use java compiler form her home directory. Thanks On 6 Mar 2002, Arthur H. Johnson II wrote:

Re: how to set evn path

2002-03-06 Thread Arthur H. Johnson II
You line: PATH=$PATH:$HOME/bin /usr/java/bin Should read: export PATH=$PATH:$HOME/bin:/usr/java/bin On Wed, 2002-03-06 at 14:04, Jianping Zhu wrote: > I have java install in usr/java directory, (javac and java in > /usr/java/bin) how can modify .bash_profile in /home/jzhu so I can use > javac

how to set evn path

2002-03-06 Thread Jianping Zhu
I have java install in usr/java directory, (javac and java in /usr/java/bin) how can modify .bash_profile in /home/jzhu so I can use javac and java in /home/jzhu? in fact I add this line in the .bash_profile PATH=$PATH:$HOME/bin /usr/java/bin but it does not work. Any advice appreciated. ---