Install mono and Monodevelop on a new Redhat 6.5 Workstation

15,558

Most of this comes from http://wiki.phonicuk.com/Installing-Mono-in-CentOS-5-x.ashx

1) Satisfy the dependencies before compiling mono

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

2) compile mono

cd ~
wget http://download.mono-project.com/sources/mono/mono-2.10.8.tar.gz
tar zxvf mono-2.10.8.tar.gz
cd mono-2.10.8
./configure --prefix=/usr/local
make

3) install mono

make install
Share:
15,558

Related videos on Youtube

somethingSomething
Author by

somethingSomething

Updated on September 18, 2022

Comments

  • somethingSomething
    somethingSomething over 1 year

    Does anyone know how to install Mono and MonoDevelop on a Redhat 6.5 Workstation?

    I've tried a number of different things but nothing has worked. I tried using git and building with make from the mono website but it didn't build.

  • Jerod Venema
    Jerod Venema over 7 years
    I think this may be the first time directions on SO for a random series of linux commands actually worked on the first try.