En este post voy a explicar como instalar rapidamente MariaDB en Fedora 13
Primero vamos a descargar el ultimo release desde http://askmonty.org/wiki/MariaDB:Download#Binaries
En este caso yo descargue el binario para 64 bits (mariadb-5.1.49-Linux-x86_64.tar.gz)
Cuando lo descargamos realizamos lo siguiente:
[root@host ~]#groupadd mysql [root@host ~]# useradd -g mysql mysql [root@host ~]# cd /usr/local [root@host ~]# gunzip < /home/usuario-test/Downloads/mariadb-5.1.49-Linux-x86_64.tar.gz | tar xvf - [root@host ~]# ln -s la-ruta-a-mariadb-5.1.49-Linux-x86_64 mysql [root@host ~]# cd mysql [root@host ~]# chown -R mysql . [root@host ~]# chgrp -R mysql . [root@host ~]# scripts/mysql_install_db --user=mysql [root@host ~]# chown -R root . [root@host ~]# chown -R mysql data [root@host ~]# bin/mysqld_safe --user=mysql &