Table of Content

The global setting change can be added to /etc/profile, this will be refreshed on next user login; or /etc/bash.bashrc(openSUSE) or /etc/bash/bashrc, this will be refreshed on next bash shell started. I prefer use bash profile.

openSUSE setup

add change at end of /etc/bash.bashrc

PATH=$PATH:/usr/jdk/jdk1.7.0_21/bin
export PATH
alias ll='ls -l'
alias la='ls -ltra'
alias ipython='python /usr/local/ipython/ipython.py'
alias jython='java -jar /usr/local/jython/jython.jar'

Solaris 11 x86

add change at end of /etc/bash/bashrc

PATH=$PATH:/usr/jdk/jdk1.7.0_21/bin
export PATH
alias ll='ls -l'
alias la='ls -ltra'
alias ipython='python /usr/ipython/ipython.py'
alias jython='java -jar /usr/jython/jython.jar'