The above method is okay if you only want one user to be able to use that alias but if you want all users to be able to use an alias you must use this method. There is a short warning which I must give you if you are using this it uses the "root" account, different distributions of Linux have different methods of getting into the root account.
If you are using Ubuntu or a derivative, use the following command to access the root account (you must be in an account permitted to use sudo)
sudo su
Then type in your account password and you now have root access, for all other distributions of Linux you must log into your root account with the password you gave it at the start, see your specific distribution help files if you do not know how to do that.
Once you have root access it is a similar process to the one above except you are now using a different file. I will be using gedit again for this command:
gedit /etc/bash.bashrc
Then add your alias to the bottom (very carefully since you are root user)
The final thing to do is restart the computer to make the file get reloaded into the system with the new aliases. You can do it right there from the terminal if you are root by using:
shutdown -r now