I'm a Linux neophyte and can't figure out how to install the Mono 2.6.7 runtime on CentOS 5.5 using yum.

I know how to build Mono from the source. However, according to this page it is possible to install the binaries directly. I'd prefer to install the binaries to avoid having to install all the devel pre-requisites on a server with little disk space.

http://www.mono-project.com/GettingStartedWithMonoVS

Am I supposed to add a new repo description to Yum? I tried doing that but I must have done it wrong because "yum list mono-core" still says the old version (1.2.4-2.el5.centos).

And, why on the release server are the .rpm's called "mono-addon-"... it's a bit confusing. It sounds like the .rpm's are an add-on to mono. I guess they mean they are an "add-on" to the server?

thanks!

link|improve this question

They are called add-on because they are installed to a separate prefix than the usual system packages. This way you can install them without conflicting with your system packages. (More of a problem for SLES, which these packages are based on.) – jpobst Aug 18 '10 at 14:32
Ah right - is that a standard linuxy convention? – octonion Aug 18 '10 at 21:20
feedback

2 Answers

up vote 51 down vote accepted

I figured it out.

Create a new repo config file

cd /etc/yum.repos.d
vi mono.repo

Add the following lines to the file

[Mono]
name=Mono Stack (RHEL_5)
type=rpm-md
baseurl=http://ftp.novell.com/pub/mono/download-stable/RHEL_5/
gpgcheck=1
gpgkey=http://ftp.novell.com/pub/mono/download-stable/RHEL_5/repodata/repomd.xml.key
enabled=1

Update the yum cache to be on the safe side

yum clean all

Install the Mono server stack

yum install monotools-addon-server

The installed binaries will end up in "/opt/novell/mono/bin".

You should issue the following command to set up your shell environment so that it finds mono, mcs and the other mono tools

source /opt/novell/mono/bin/mono-addon-environment.sh

Verify the version

mono --version

Mono JIT compiler version 2.6.7 (tarball Mon Jul 19 18:28:58 UTC 2010)
Copyright (C) 2002-2010 Novell, Inc and Contributors. www.mono-project.com
        TLS:           __thread
        GC:            Included Boehm (with typed GC and Parallel Mark)
        SIGSEGV:       altstack
        Notifications: epoll
        Architecture:  amd64
        Disabled:      none

If you want the Mono environment to be permanent you can issue the following command.

cp /opt/novell/mono/bin/mono-addon-environment.sh /etc/profile.d

Happy Mono'ing!!!

link|improve this answer
9  
If yoy get an error "System.IO.FileLoadException: Could not load file or assembly ‘System.IdentityModel, Version=3.0.0.0 …" install WCF: yum install mono-addon-wcf – SCL Dec 11 '10 at 12:11
3  
Great stuff! These steps also make it easy to install Mono on the Amazon Linux AMI on EC2, though you have to precede most commands with 'sudo'. – Dave Van den Eynde Mar 3 '11 at 20:43
+1 bloody brilliant, and here was I trying to build this from src :) – Kev Mar 19 '11 at 14:51
1  
@Dave Van den Eynde On Amazon Linux AMI you can type "sudo -i" to get the root shell. – Marek Stój Jan 5 at 19:27
Is this still accurate? I tried it again today, but I'm getting an older version from Novell. – Dave Van den Eynde Feb 22 at 22:11
feedback

In addition to octonion's posts above, if like me you want to use Apache mod_mono you need to ensure you install the correct version of mod_mono by running the following and it will get the right one

yum install mod_mono-addon

Don't just 'yum install mod_mono', it may install mod_mono 1.2 version from the centos extras repo and not what your actually after.

As a reference I was getting the following error in /var/log/httpd/error_log when running the incorrect mod_mono version

Root directory: / mod_mono and xsp have different versions. Expected '9', got 6 System.InvalidOperationException: mod_mono and xsp have different versions. Expected '9', got 6

A silly but easy mistake to make if you new to this like me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.