Installing Mysql on Ubuntu is a very simple task :
Open the terminal and type the following command
sudo apt-get install mysql-server
During installation you will be asked to provide password for Mysql root user.
You can check whether Mysql is running by using the following command :
sudo /etc/init.d/mysql status
If Mysql is not running, then issue the following command
sudo /etc/init.d/mysql start