01-02-2014, 10:51 PM
you need to install it on /usr/src not in home
here is worked mono and i tested it
Head over to /usr/src as root
su
cd /usr/srcEnsure GCC and friends are installed (to build the Mono source code)
yum install gcc gcc-c++ libtool bison autoconf automake
yum install bison gettext glib2 freetype fontconfig libpng libpng-devel libX11 libX11-devel glib2-devel libgdi* libexif glibc-devel urw-fonts java unzip gcc gcc-c++ automake autoconf libtool make bzip2 wget
Grab and unpack the Mono source code
wget http://download.mono-project.com/sources....7.tar.bz2
tar -xvjf mono-3.0.7.tar.bz2
Build and install Mono
cd mono-3.0.7
./configure --prefix=/usr
make && make install

