Skip to content

Instantly share code, notes, and snippets.

@xeb
Last active March 13, 2017 22:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xeb/c9c812050e7b377c55ee to your computer and use it in GitHub Desktop.
Save xeb/c9c812050e7b377c55ee to your computer and use it in GitHub Desktop.
CentOS 5/6 Mono installation
#!/bin/sh
ulimit -v unlimited
wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
rpm -Uvh epel-release-6-8.noarch.rpm
yum -w 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
cd /usr/local/src
wget http://download.mono-project.com/sources/mono/mono-2.10.8.tar.gz
# http://download.mono-project.com/sources/mono/mono-3.6.0.tar.bz2
tar zxvf mono-2.10.8.tar.gz
cd mono-2.10.8
./configure --prefix=/usr/local
make && make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment