1. First, install the operating system.
In fact, the purpose is to select components when installing the system.Development components,In fact, the main reason is that you are not familiar with the Linux system and do not know how to add components to the installed system.
We recommend that you use virtual machines to install the operating system. It is estimated that few users are using Linux to access the Internet now.
Software Version: Virtual Machine VMware 6.0
Red Hat Enterprise Linux 4
2. Download mono
Perform the following operations on Linux:
Mono version 2.0.1, download on Official Website: http://ftp.novell.com/pub/mono/sources-stable/
Select and download the first mono-2.0.1.tar.bz2 file.
3.decompress the mono-2.0.1.tar.bz2 File
You can either use the command line or directly, right-click --> extract to here, or tar zxfv mono-2.0.1.tar.bz2.
After decompression, a folder named mono-2.0.1 is generated.
This is the file to be used later.
4. Configure and compilation
Enter the decompressed directory and run the./configure command.
After that, a series of checks will appear, and compilation will be completed.
If a file appears in configure, for example, the C compiler cannot find it, it is the reason why the development tool is not installed when the operating system is installed.
Compile method: Just run the make command. It takes a long time and information is messy.
5. Install
After the compilation is complete, enter make install to install the tool.
After the installation is complete, if you enter mono and the help group information appears, the installation is successful.
6. Uninstall
Make uninstall is the uninstall command.
Reinstallation method: Make distclean->./configure-> make install