make your bashrc like this:
Code:
echelon@core:~$ cat .bashrc
alias pico=nano
alias ll='ls -lh'
alias la='ls -Alh'
eval `dircolors`
and create a symlink called .bash_login that points to your bashrc:
Code:
echelon@core:~$ ll .bash*
-rw------- 1 echelon users 8,9K 2003-12-23 07:58 .bash_history
lrwxrwxrwx 1 echelon users 7 2003-12-12 12:30 .bash_login -> .bashrc
-rw------- 1 echelon users 878 2003-12-12 12:28 .bashrc
echelon@core:~$