Creating A Terminal Alias

Provided your .bashrc file has this line...

# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.

if [ -f ~/.bash_aliases ]; then
    . ~/.bash_aliases
fi

You can add these aliases to your ~/.bashrc_aliases file for ubuntu and lbuntu systems...

# In lububuntu
alias terminal="lxterminal"

# In ubuntu
alias terminal="gnome-terminal"