I have a path that starts like this

PATH=/opt/subversion:/usr/bin:/bin:/usr/sbin:/sbin [etc]

and this is wrong (at least opt/subversion needs to be opt/subversion/bin). Where is this being set? I checked the usual suspects that I know:

.login
.profile
.bash
.bashrc

and it doesn't seem to be in any of these. Where do I need to look?

link|improve this question

74% accept rate
feedback

1 Answer

up vote 8 down vote accepted

Stuff like this can be set on a per-user basis in which case you should be able to find something in your .bashrc, .bash_profile or .profile files. Or it can be set on a global level. In that case, I'd take a look inside /etc/environment, /etc/profile and /etc/bash.bashrc.

link|improve this answer
Thanks. That sounds like something I would've looked for and changed. And in fact there it is :) export PATH=/opt/subversion:$PATH right in /etc/profile. – Yar Nov 20 '09 at 14:33
feedback

protected by nhinkle Jun 28 '11 at 5:27

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.