![]() |
|
Guide install mono - Printable Version +- LCKB (https://lckb.dev/forum) +-- Forum: ** OLD LCKB DATABASE ** (https://lckb.dev/forum/forumdisplay.php?fid=109) +--- Forum: Guides & Help Section (https://lckb.dev/forum/forumdisplay.php?fid=193) +---- Forum: Tutorials & Guides (https://lckb.dev/forum/forumdisplay.php?fid=124) +----- Forum: Ep2 Guides (https://lckb.dev/forum/forumdisplay.php?fid=165) +----- Thread: Guide install mono (/showthread.php?tid=1543) |
- ToniMontana - 01-27-2013 CentOS 5.x/6.x doesnt have a recent version of Mono in its repositories. So a version must be fetched separately. Compiling from source (Recommended) Compiling Mono from source has the advantage of letting you use newer versions than are pre-supplied by Novell. You can find a list of Mono versions available to download at 2 - In this example we will be installing version 2.10.8. Installing Dependencies2 All of the required dependencies are available via the Yum package manager. 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 Downloading and Compiling In some cases, you may want to use a prefix of /opt/mono - this will require you to either add this directory to your PATH environment variable, or explicitly specify the full path to Mono when you want to run it. Then run the following as root: cd /usr/local/src 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 && make install Instead of ./configure --prefix=/usr you can use ./configure --prefix=/opt/mono (as discussed above). If you get an "Out of memory" error while running make on memory-limited systems, try running the following to allow higher virtual memory usage: ulimit -v unlimited Downloading Pre-built RPMs Important Note: There have been reports that using the pre-built RPMs causes McMyAdmin to stall or quit at startup after system detection. It is strongly recommended that you use the Compiling from source instructions above. You can download Mono version 2.10.2 from the Novell FTP site at 2for x86 and x86_64 architectures. The following packages are required: mono-addon-core mono-addon-extras mono-addon-libgdiplus mono-addon-locale-extras mono-addon-web Related Pages22 - fonsy84 - 01-28-2013 repeat...2 XD - bachana - 08-01-2013 100% works |