vote up 1 vote down star

When I ssh into my ubuntu-box running Hardy 8.04, the environment variables in my .bashrc are not set.

If I do a source .bashrc, the variables are properly set, and all is well.

How come .bashrc isn't run at login?

flag

80% accept rate

3 Answers

vote up 7 vote down check

.bashrc is not sourced when you log in using SSH. You need to source it in your .bash_profile like this:

if [ -f ~/.bashrc ]; then
  . ~/.bashrc
fi
link|flag
vote up 0 vote down

If ayman's solution doesn't work, try naming your file .profile instead of .bash_profile. That worked for me.

link|flag
vote up 2 vote down

For an excellent resource on how bash invocation works, what dotfiles do what, and how you should use/configure them, read this:

link|flag

Your Answer

Get an OpenID
or

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