How to permanatly change PATH


 
Thread Tools Search this Thread
Operating Systems Solaris How to permanatly change PATH
# 1  
Old 07-11-2009
How to permanatly change PATH

I used set PATH$
but that worked until I closed Terminal , now qouestion is how to put this in PATH=/usr/bin:/usr/sbin:/usr/X11/bin:/usr/sfw/bin:/usr/openwin/bin:/usr/dt/bin:/usr/perl5/5.6.1/bin:/usr/perl5/5.8.4/bin:/usr/java/bin:/usr/apache2/bin:/opt/SUNWspro/bin:/opt/coolstack/bin:/opt/scfw/bin:/opt/rogo/bin:/opt/rogo/sbin:/usr/xpg4/bin:/usr/ccs/bin:/opt/oracle/product/10.2.0.1.0/bin
permantly
# 2  
Old 07-11-2009
Hi.

Try setting it in your $HOME/.profile.

It's safer to say
Code:
PATH=$PATH:<whatever you want to add>
or
PATH=<whatever you want to add>:$PATH

Then whenever you log in, it gets set. (you need to login again or execute ". ~/.profile" to make it effective)

(incidentally, this is not a Solaris question, but a general one)

Last edited by Scott; 07-11-2009 at 06:04 PM..
# 3  
Old 07-11-2009
And if you want to set it by default for all accounts, the best way is to uncomment and set the PATH variable in /etc/default/login.
# 4  
Old 07-11-2009
of course (if I thought our friend was root, i'd have mentioned it!)
# 5  
Old 07-12-2009
Ok I done it , I am new in Solaris world
# 6  
Old 07-13-2009
Quote:
Originally Posted by microbot
Ok I done it , I am new in Solaris world
This is not a Solaris thing, this is general Unix.

Anways, good things start working for you.

Regards.
# 7  
Old 07-13-2009
/etc/default/login is mostly Solaris specific.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Extract name from path and change output

Dear All, I would like to extract the file name without extension form a variable... In particular I have a command like this one: for file in path/to/file/example_number.ext do something -input $file -output ${file%_number.ext}.new done means that in variable $file are saved all the path... (3 Replies)
Discussion started by: giuliangiuseppe
3 Replies

2. Shell Programming and Scripting

Change Shell Command Path

I want to change the path for the command in a shell. I want to make it easier to type in the command when I run the shell. As of now, I have to type in /bin/ls but I want to just type in "ls" instead. I have altered the function below to do this but it's not working. It still must have the full... (1 Reply)
Discussion started by: JustinT2474
1 Replies

3. SuSE

change PATH problem

Hi, I want to add a path to PATH. I added export PATH=$PATH:$HOME/newpath in the ~.profile. I exit the shell and reenter shell. After I type echo $PATH. The new path is not added. I don't know why. Can someone give advice? Thanks! (3 Replies)
Discussion started by: jianma
3 Replies

4. Shell Programming and Scripting

How to change Absolute path to Relative path

Hello, I have a doubt:- --------------------- Current script:- ################################################################################################ prefix=user@my-server: find . -depth -type d -name .git -printf '%h\0' | while read -d "" path ; do ( cd "$path" || exit $?... (4 Replies)
Discussion started by: sahil_jammu
4 Replies

5. Shell Programming and Scripting

how can i change my PATH

1. that you are calling the POSIX UNIX commands located under /usr/xpg4/bin instead of those under /usr/bin 2. that you can run programs from the current directory 3. that your scripts located in the bin directory under your HOME directory can be found and executed from any... (1 Reply)
Discussion started by: vpatel44
1 Replies

6. HP-UX

change directory path

Hi, when ever i login my unix system it is going to root directory....how can i change it specified directory.. (3 Replies)
Discussion started by: rsivasan
3 Replies

7. Shell Programming and Scripting

How do I add the option to change the path in a menu?

How do I add the option to change the path in a menu? I have this script. The user chooses a number and had the option of doing something, looking for log files etc. There is a possibility they might want to look at a different path other than what I have given them such as... (2 Replies)
Discussion started by: taekwondo
2 Replies

8. UNIX for Dummies Questions & Answers

change and replacing headerfile path

Hello, I just need to repalce my include path of an cd.h file in a dir which is having more tha 100 files. I used some sed and grep but unsuccessful. I am using HP_UX and i need to change #include "cd.h" to #include <cd.h> Please advise me. (1 Reply)
Discussion started by: jagan_kalluri
1 Replies

9. What is on Your Mind?

Career Path/Change - Cert Help

This is a very serious post. I am a Cell Technician (Cellular Base Station Tech) who is completely bored because my job has basically evolved into a Field Secretary position. I love working on T1's and troubleshooting equipment outages and so on and so forth but my job has become VERY... (2 Replies)
Discussion started by: CoopDeVille
2 Replies

10. UNIX for Advanced & Expert Users

Change Default Path ?

Dear All When i am telnet' ing to some IP, after logging in, i am into some default path.I want to specify "custom path" , that is after logging in , when i do pwd it should be custom path.For this where i have to change the setting or edit the path already specified. I am having... (4 Replies)
Discussion started by: tkbharani
4 Replies
Login or Register to Ask a Question