I get it.
Create a new repository configuration 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 YUM Cache on Safe Side
yum clean all
Install Mono Server Stack
yum install monotools-addon-server
Installed binaries will go to "/ opt / novell / mono / bin".
You must run the following command to configure the shell environment so that it finds Mono, mcs, and other Mono tools
source /opt/novell/mono/bin/mono-addon-environment.sh
Check 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 Mono to be permanent, you can run the following command.
cp /opt/novell/mono/bin/mono-addon-environment.sh /etc/profile.d
Happy Mono'e !!!
octonion Aug 18 '10 at 9:51 on 2010-08-18 09:51
source share