LCKB
Easy Install for mono - Printable Version

+- LCKB (https://lckb.dev/forum)
+-- Forum: ** OLD LCKB DATABASE ** (https://lckb.dev/forum/forumdisplay.php?fid=109)
+--- Forum: Guides & Help Section (https://lckb.dev/forum/forumdisplay.php?fid=193)
+---- Forum: Tutorials & Guides (https://lckb.dev/forum/forumdisplay.php?fid=124)
+----- Forum: General Guides (https://lckb.dev/forum/forumdisplay.php?fid=194)
+----- Thread: Easy Install for mono (/showthread.php?tid=2826)



- Vogelj1988 - 06-10-2015


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".