Error installing Mariadb

0

I'm trying to install mariadb and the system returns the following error My question is as follows, how to install into a directory other than the / var / cache ...

    
asked by anonymous 21.03.2017 / 03:14

1 answer

1

Image indicates that you are out of space, you need to clean it:

First, check / tmp is empty.

Then try to link the space of /home to /var/cache/yum/base/packages

mount --bind /home/yum /var/cache/yum/base/packages

Then add an entry in the /etc/fstab part like this:

/home/yum /var/cache/yum/base/packages none,rw bind 0 0

After you have done this, run: df -h it will show /var/cache/yum/base/packages

so you can try to install again

    
21.03.2017 / 07:17