Mono

CentOS 5 / Fedora 15 / Redhat 5

32 bit
mono-2.10.2-bi.i386.rpm
64 bit
mono-2.10.2-bi.x86_64.rpm
Installation
yum install mono-2.10.2-bi.xxxxx.rpm --nogpgcheck

Debian 6 / Ubuntu 10

32 bit
mono-2.10.2-bi.i386.deb
64 bit
mono-2.10.2-bi.x86_64.deb
Installation
The second line might show errors if the dependencies are not installed. The third line will install the missing dependencies.
apt-get update
dpkg -i mono-2.10.2-bi.xxxxx.deb
apt-get install -f

Other / Manual Installation

32 bit
mono-2.10.2-i386.tar.gz
mono-deb-2.10.2-i386.tar.gz
64 bit
mono-2.10.2-x86_64.tar.gz
mono-deb-2.10.2-x86_64.tar.gz
Installation
Must be extracted to /opt. Extracting to other directories will not work.
mkdir /opt
cd /opt
wget http://www.tcadmin.com/installer/mono-2.10.2-xxxxx.tar.gz
tar xzvf mono-2.10.2-xxxxx.tar.gz
Check for missing dependencies and install them
ldd /opt/mono-2.10.2/bin/mono|grep "not found"
ldd /opt/mono-2.10.2/lib/libgdiplus.so|grep "not found"

Build from Source

Download the following packages from mono-project.com:

  • libgdiplus
  • mono
  • mono-basic
  • xsp

When using the commands below replace 2.10.3 with the version you are building.

Install any missing dependencies shown by the configure command before running make.

Build libgdiplus

Libgdiplus must be installed with support for png, jpg and gif. This is required by the default and custom themes.

wget http://download.mono-project.com/sources/libgdiplus/libgdiplus-2.10.tar.bz2
tar xjvf libgdiplus-2.10.tar.bz2
cd libgdiplus-2.10
./configure --prefix=/opt/mono-2.10.4
make
make install

Build mono

wget http://download.mono-project.com/sources/mono/mono-2.10.4.tar.bz2
tar xjvf mono-2.10.4.tar.bz2
cd mono-2.10.4
./configure --prefix=/opt/mono-2.10.4 --with-libgdiplus=/opt/mono-2.10.4
make
make install

Build mono-basic

wget http://download.mono-project.com/sources/mono-basic/mono-basic-2.10.tar.bz2
tar xjvf mono-basic-2.10.tar.bz2
cd mono-basic-2.10
PATH=$PATH:/opt/mono-2.10.4/bin PKG_CONFIG_PATH=/opt/mono-2.10.4/lib/pkgconfig ./configure --prefix=/opt/mono-2.10.4
PATH=$PATH:/opt/mono-2.10.4/bin PKG_CONFIG_PATH=/opt/mono-2.10.4/lib/pkgconfig make
PATH=$PATH:/opt/mono-2.10.4/bin PKG_CONFIG_PATH=/opt/mono-2.10.4/lib/pkgconfig make install

Build xsp

wget http://download.mono-project.com/sources/xsp/xsp-2.10.2.tar.bz2
tar xjvf xsp-2.10.2.tar.bz2
cd xsp-2.10.2
PATH=$PATH:/opt/mono-2.10.4/bin PKG_CONFIG_PATH=/opt/mono-2.10.4/lib/pkgconfig ./configure --prefix=/opt/mono-2.10.4
PATH=$PATH:/opt/mono-2.10.4/bin PKG_CONFIG_PATH=/opt/mono-2.10.4/lib/pkgconfig make
PATH=$PATH:/opt/mono-2.10.4/bin PKG_CONFIG_PATH=/opt/mono-2.10.4/lib/pkgconfig make install

Post Build Steps

  1. Download an updated browsercaps.ini for improved browser recognition. Replace the existing file in /opt/mono-2.10.4/etc/mono browsers.garykeith.com
  2. Update the file /home/tcadmin/Monitor/mono-config with the path to your mono build.
  3. Restart the monitor and serviceman services:
cd /home/tcadmin/Monitor
./monitor-service restart
./serviceman-service restart
Retrieved from "https://help.tcadmin.com/index.php?title=Mono&oldid=460"