06-10-2015, 12:48 AM
cd /etc/yum.repos.d/
curl -L -O '2'
Then you can use the following command to install the complete mono suite:
Code:
yum install mono-complete
For some plugins to work, you need libgdi which is missing a symlink in these packages so you have to create it manually
Code:
# for 64 bit CentOS installations
ln -s libgdiplus.so.0 /usr/lib64/libgdiplus.so
# for 32 bit CentOS installations
ln -s libgdiplus.so.0 /usr/lib/libgdiplus.so
Using this method, no compiling is necessary and you can install updates just by using "yum update".

