Stop Microsoft
Operating Systems => Linux and UNIX => Topic started by: Master of Reality on 26 June 2002, 10:03
-
I searched but couldnt find the thread where this was already answered (a while back). How do I add directories to my path???
-
quote:
vi ~/.bash_profile
after
PATH=$PATH:$HOME/bin
add
:/whatever
---------------------
New Q:
whats the diff between /bin and /sbin ??
[ June 26, 2002: Message edited by: Master of Reality / Bob ]
[ June 26, 2002: Message edited by: Master of Reality / Bob ]
-
An interactive way is to:
export PATH=$PATH:/newdir1:/newdir2:etc
But you'll want to do this in your ~/.bash_profile. Find the line that starts with "PATH" and add to it.
NOTE: Until you log off and back on the additions will not be recognized unless you do a ". ~/.bash_profile" in any new window/shell you open.
[ June 26, 2002: Message edited by: VoidMain ]
-
a little late, arent we VoidMain?
-
Damn you Bob!
-
quote:
New Q:
whats the diff between /bin and /sbin ??
they're different directories? is this a trick question?
also i think it was a bit cruel to answer your OWN question and then TAUNT VoidMain over his trying to help!
-
void :
don't want to be a nitpick but usually it's desirable to put $PATH at the end, not at the beginning. I.E. qt defines a QTDIR, $QTDIR/bin is in your path, if you use multiple qt version typing export PATH=$PATH:$QTDIR/bin is not the same as export PATH=$QTDIR/bin:$PATH (in the first case, the $QTDIR/bin already present in the path will be used)
bob:
/bin is for normal binaries, /sbin is for binaries which require root priviliges (if I'm not mistaken)
Calum's answer is also entirely correct ofcourse though :D
-
quote:
Originally posted by Calum:
also i think it was a bit cruel to answer your OWN question and then TAUNT VoidMain over his trying to help!
actually... taht is voidmains answer that i posted... I got it from another thread and changed it a little.
-
quote:
Originally posted by BadKarma:
void :
don't want to be a nitpick but usually it's desirable to put $PATH at the end, not at the beginning. I.E. qt defines a QTDIR, $QTDIR/bin is in your path, if you use multiple qt version typing export PATH=$PATH:$QTDIR/bin is not the same as export PATH=$QTDIR/bin:$PATH (in the first case, the $QTDIR/bin already present in the path will be used)
No, no, no, no, no. Did I say "no"? UNIX Security 101. You might as well put "." as the first directory in your path. You always want the "system" directories first in your path, and then add what you want at the end (although even then you should be careful). It opens you up for trojans if you do otherwise. If you would like examples I would be more than happy to give a few.
[ June 26, 2002: Message edited by: VoidMain ]