vote up 8 vote down star

I'm wondering if mono.net is included in the default installation of Ubuntu, Kubuntu, and Fedora, and other popular distros?

If so, does anyone have a good reason why NOT to use it to develop a new GUI application targeted mainly for linux?

flag

5 Answers

vote up 12 vote down check

It is included in Fedora, Ubuntu, Mandriva, Debian and OpenSUSE.

The only major OS that does not include it is RHEL, but packages are available for it as a separate download.

Additionally, you can bundle Mono with your application into a single binary if you need to (not recommended, but always possible).

GUI-wise Mono supports the Windows.Forms API on Unix and MacOS, but if you want a more native experience you can use the Gtk# API (this provides a .NET API for the GNOME library stack) or you can use Qyoto if you want to integrate instead with the KDE APIs.

There are many best-of-breed GUI applications for Linux that have been developed with Gtk# and Mono, some of the most popular ones include Gnome-Do (A quick application launcher), the F-Spot photo management software, the Banshee and Muine media players and the MonoDevelop IDE.

link|flag
vote up -4 vote down

I'm wondering if mono.net is included in the default installation of Ubuntu, Kubuntu, and Fedora, and other popular distros?

I don't believe Ubuntu comes with it by default, Kubuntu certainly doesn't.

Ubuntu Intrepid, and probably Hardy, comes with Mono by default. Don't know about its status on other distros.

If so, does anyone have a good reason why NOT to use it to develop a new GUI application targeted mainly for linux?

If it's targeted mainly at Linux, why not use a technology that integrates better with the Linux desktop? Python and Java are good choices. Only use .NET if there's a large amount of legacy code you'll be re-using.

link|flag
I can't think of an easier platform that C# + GTK# for creating a cross platform app, it beats the hell out of Java + Swing, and I really don't want to do C++ and QT, or C + GTK+ – FlySwat Sep 27 '08 at 19:53
Wasn't one of the goals of mono to provide an open source implementation to benefit non-windows platforms. I don't see why mono isn't any better at integrating with Linux than Java or Python, especially Java. – Kev Sep 27 '08 at 19:56
You can use Java + GTK, or Python + GTK. Both have better bindings for Linux-related libraries and actually are cross-platform. – John Millikin Sep 27 '08 at 19:56
1  
I'd even go so far to say that Mono could be the saving grace for Linux on the desktop if only folk could rid themselves of the usual Mono == MS == Bad crap. – Kev Sep 27 '08 at 19:57
.NET has delegates, which are 900% easier to use than anonymous inner classes for GUI programs. That feature alone, makes using Mono worth it. Mono also runs better on OS X than Java does (Has OS X even got Java6 yet?) – FlySwat Sep 27 '08 at 20:01
show 9 more comments
vote up 1 vote down

I'm pretty sure it's default on Ubuntu. If it wasn't, I didn't notice installing it.

The package managers on modern distributions pull down dependencies automatically. There's no great impediment to using any strange platform on these distros.

That said, lots of Ubuntu apps are being written in Mono with GTK#. Most notably off the top of my head are Tomboy Notes and Gnome Do.

link|flag
vote up 4 vote down

GUI-wise Mono supports the Windows.Forms API on Unix and MacOS, but if you want a more native experience you can use the Gtk# API (this provides a .NET API for the GNOME library stack) or you can use Qyoto if you want to integrate instead with the KDE APIs.

There are many best-of-breed GUI applications for Linux that have been developed with Gtk# and Mono, some of the most popular ones include Gnome-Do (A quick application launcher), the F-Spot photo management software, the Banshee and Muine media players and the MonoDevelop IDE.

link|flag
Btw, for those who don't know, miguel.de.icaza is the principle author of Mono (and Gnome) :) – FlySwat Sep 27 '08 at 20:02
vote up 0 vote down

I think the biggest reason for not using it would be political. That being said, I think mono is an excellent enviroment to develop in when writing programs for Linux and I would recommend it to anyone writing a new application.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.