In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-01 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
This article mainly shows you "How to configure Mono on Red Hat 5.5 Enterprise Edition". The content is simple and easy to understand, and the organization is clear. I hope it can help you solve your doubts. Let Xiaobian lead you to study and learn this article "How to configure Mono on Red Hat 5.5 Enterprise Edition".
Mono configuration on Linux is cumbersome and involves support for a lot of. net environments. To ensure that most of the installation process does not report errors. After several brothers worked hard for a long time, it was finally completed and successfully applied to the portal website on the Internet. The article may be divided into upper and lower parts,*** attached with some installation files. I don't know what to say.
A little reminder for those unfamiliar with Linux:
In the installation needs to be installed as root user (system comes with), this installation is linux system source code installation.
tar: extract files
cd: enter directory
configure: configure
prefix: installation path
make: before installation
make install: install
1. Install Apache2
Tar zxvf httpd-2.2.11.tar.gz
cd httpd-2.2.11
.configure --prefix=/usr/local/apache2
make
make install
(The apache2 folder doesn't exist and doesn't need to be created; it will be created.)
Start apache service: /usr/local/apache2/bin/apachectl restart(for the system I am operating, I need to enter again to start)
2. Install EXIF support
EXIF format is specifically designed for digital camera photos. This format can record digital photo attribute information.
tar jxvf libexif-0.6.17.tar.bz2
cd libexif-0.6.17
./ configure
make
make install
tar jxvf exif-0.6.17.tar.bz2
cd exif-0.6.17
./ configure --prefix=/usr/local/exif
make
make install
3. Install TIFF support
TIFF format is a file format primarily used to store images including photographs and art drawings.
tar zxvf tiff-3.8.2.tar.gz
cd tiff-3.8.2
./ configure --prefix=/usr/local/tiff
make
make install
4. Install GIF support
The GIF format is a standard format for compressing images with monotonous colors and sharp details, such as line drawings, logos, or illustrations with text.
tar jxvf giflib-4.1.6.tar.bz2
cd giflib-4.1.6
./ configure --prefix=/usr/local/gif
make
make install
(Note: Configure Lib and include support)
Because the location of lib and include will vary depending on the source code settings after installation, and Mono will only be found in the/usr/lib directory, you need to configure the corresponding support with the following command:
cp /usr/local/lib/pkgconfig/libexif.pc /usr/lib/pkgconfig/
cp /usr/local/gif/lib/* /usr/lib/
cp /usr/local/gif/include/* /usr/include/
cp /usr/local/tiff/lib/* /usr/lib/
cp /usr/local/tiff/include/* /usr/include/)
5. Install libgdiplus
Complete support for the System.Drawing class.
tar jxvf libgdiplus-2.2.tar.bz2
cd libgdiplus-2.2
./ configure
make
make install
6. install Mono
Mono is a project hosted by Novell Corporation (formerly Ximian). The goal of this project is to create a set of. Net tools that conform to ECMA standards (Ecma-334 and Ecma-335), including a C#compiler and a Common Language (CL) execution platform. The Mono project runs not only on Windows, but also on Linux, FreeBSD, Unix, Mac OS X and Solaris.
It should be noted here that the directory where mono is installed needs to be specified as/usr, otherwise an error such as 503 will appear. Mono compilation time will be longer, there will be some warnings in the compilation, these will not affect the normal compilation later.
tar jxvf mono-2.2.tar.bz2
cd mono-2.2
./ configure --prefix=/usr
make
make install
After installation, enter: mono Enter will display mono related information, otherwise there is nothing.
7. Install xsp
xsp is the parsing engine for ASP.NET, xsp is equivalent to tomcat for jsp/apache environments.
tar jxvf xsp-2.2.tar.bz2
cd xsp-2.2
./ configure --prefix=/usr
make
make install
After installation, enter xsp --root/usr/lib/xsp/test Enter
Then type: http://localhost:8080/in the browser to appear welcome xsp interface
8. Install mod-mono support
mod_mono is the apache to xsp connector, mod_mono is equivalent to mod_jk(or mod_jk2) for jsp/apache environments.
tar jxvf mod_mono-2.2.tar.bz2
cd mod_mono-2.2
./ configure --with-apxs=/usr/local/apache2/bin/apxs
make
make install
The above is "Red Hat 5.5 Enterprise Edition Mono how to configure" all the content of this article, thank you for reading! I believe that everyone has a certain understanding, hope to share the content to help everyone, if you still want to learn more knowledge, welcome to pay attention to the industry information channel!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.