When I ssh into my ubuntu-box running Hardy 8.04, the environment variables in my .bashrc are not set.
.bashrc
If I do a source .bashrc, the variab
.bashrc is not sourced when you log in using SSH. You need to source it in your .bash_profile like this:
.bash_profile
if [ -f ~/.bashrc ]; then . ~/.bashrc fi