First, install MySQL:
sudo aptitude install mysql-server mysql-client. Next, give yourself a MySQL password (replacing the capitalized work PASSWORD with a password of your own invention):
mysqladmin -u root password PASSWORDFinally, create the database for Amarok (once again substituting the password you chose instead of PASSWORD).
mysql -p -u root
CREATE DATABASE amarok;
USE mysql;
GRANT ALL ON amarok.* TO amarok@localhost IDENTIFIED BY 'PASSWORD';
FLUSH PRIVILEGES;
quitFire up Amarok, choose settings, configure Amarok, Collection. Use the following settings:
Hostname: 127.0.0.1
Database: amarok
Port: 3306
Username: amarok
Password: Your Password
Now Amarok's collection should be much speedier.
No comments:
Post a Comment