I updated both my scripts for Ubuntu and Fedora to download and install the latest 2.8 Mono release. I’ve also been playing with GTK lately (specifically Pixbufs) and so this script now includes the install for GTK-Sharp. Anyway, you can find the updated scripts on my GitHub snippets project. Both Fedora and Ubuntu install scripts should succesfully install mod_mono, Xsp, mono core, GTK, and GDIplus at a minimum.
If you have problems running your apps that use the gdi-plus, it could be resolved with a refresh of the DllMap. Enter "sudo ldconfig" and then try to re-run your app. Checkout http://www.mono-project.com/DllNotFoundException for more details.
2/20/2011 Update
Mono 2.10 has been released. I added a new install script here.
1/27/2011 update
Mono 2.8.2 was released awhile back, which included some security fixes and enhancements. I have since posted an updated script along another blog post related to it here.
10/26/2010 update
The script now installs to /opt/mono-2.8 instead of /usr/local in favor of the parallel mono environment suggestion. You may need to add /opt/mono-2.8/bin to your system PATH.
For Ubuntu, this is located in /etc/environment; insert /opt/mono-2.8/bin to the beginning of the path. Keep in mind, this will change the global PATH, so if your'e using a workstation, this may affect other applications that depend on Mono. Consider changing your profile PATH. (See comments for more details).
For RH/Fedora, I updated the install script to also create an environment script at: /etc/profile.d to include this mono install to your system path.
Disclaimer: You should only try this script if your'e familiar with the process of compiling packages manually. I'm trying to make it work for MonoDevelop and other files, but it may not work with them in its current state.
Feel free to fork and make changes of your own to the script from GitHub. I'll gladly welcome pull requests containing improvements.
Read more…