Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

closed as off topic by lesmana, Yan, Jason Heine, gpojd, NullPoiиteя Nov 9 '12 at 19:54

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

4 Answers

up vote 143 down vote accepted

.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
share|improve this answer
works for Ubuntu 11.04 natty – geekQ Aug 9 '11 at 18:35
Worked for me on FreeBSD 8.2 – Lytithwyn Nov 18 '11 at 20:19
Worked for me on Ubuntu 11.10 LAMP. Thanks! – Jorge Apr 17 '12 at 17:46
5  
this should work on any sane distro with Bash, thus all these comments are obsolete :) – user529649 Jul 2 '12 at 2:09
This isn't necessary with Ubuntu 12.04 LTS server, since .bashrc is sourced when you SSH in, by default. – orokusaki Dec 15 '12 at 2:53
show 5 more comments

I had similar situation like Hobhouse. I wanted to use command

 ssh myhost.com 'my_strange_command'

and 'my_strage_command' exists in '/var/some_wired_location' so I tried to append '/var/some_wired_location' in PATH environment by editing '$HOME/.bashrc'

but that is not working. because my default .bashrc(Ubuntu 10.4 LTS) prevent from sourcing by code below

# If not running interactively, don't do anything
[ -z "$PS1" ] && return

so If you want to change environment for ssh non-login shell. you should add code above that line.

share|improve this answer
2  
Thanks mate! This was the bit that didn't work for me :) – Raymond Barlow Aug 18 '11 at 10:09

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

share|improve this answer
Excellent link! – Lytithwyn Nov 18 '11 at 20:24

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

share|improve this answer
Awesome. I lost 15 minutes on this detail. – Vinicius Massuchetto Mar 6 '12 at 19:06

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