!Installazione

aptitude install mysql-server

!Avvio
/etc/init.d/mysql start

!cambio password dell’utente root (di MySQL non del sistema)
mysqladmin -u root password *vostra-password*

poi non rimane altro che loggarsi con la nuova password che vi verrà richiesta
mysql -u root -p


If you are running PHP you will also need to install the php module for mysql 5:
sudo apt-get install php5-mysql

To create a new database, use the mysqladmin command:
mysqladmin create <databasename>