Is it viable to charge for an open-source product? Both legally and financially, it seems like a very strange thing to do. However, I keep hearing people say that it's possible. Are there even any real-world examples for this sort of thing?
-
1Charging for GPL code is not illegal. You just have to make the source available if those you distribute to want it. Also, if the code is licensed under the GPL, anyone you distribute to can distribute it however they want (including for free on the internet). – compman Jun 17 '11 at 16:38
-
1Surely nobody would want to contribute unless they were guaranteed a profit share? – Anonymous Jun 17 '11 at 16:38
-
1@compman - I thought you could charge if you want, but you can't prevent people from getting the code free elsewhere. As you suggest, though, the only person you can force to pay is probably your first customer, if you include the source with the product itself only - every customer is a potential competitor who may legitimately undercut you by giving away your product for free. – Jun 17 '11 at 16:49
-
@Chris Bridgett - If that were true, there would be no volunteers nor charities in the world. – Philip Jun 17 '11 at 20:35
-
@Chris Bridgett Obviously false. Look at almost every open source project in existence. – Rein Henrichs Jun 17 '11 at 21:07
-
@Philip - Huh? No... charities are not-for-profit, that's the point. They're for the greater good. If you were to volunteer or work for a charity it would be equivalent to making a donation. @Rein What am I looking for? Open source == free. Why would anybody pay? – Anonymous Jun 17 '11 at 21:45
-
@Chris Bridgett, Perhaps this is a confusion about the term "contribute". Usually it's used to describe people working on an open source project. They contribute work, patches, time, and bandwidth. For no profit. People do that for open source projects. A lot. Perhaps you meant "contribute" as in "pay for"? – Philip Jun 20 '11 at 15:03
-
@Philip I think what @Chris is trying to say is that people don't have a problem contributing patches, time and bandwidth for free open-source projects, but when someone starts making money directly off of it, they want a cut. – Maxpm Jun 20 '11 at 17:06
3 Answers
A few examples:
Linux - packaged and sold in distributions, not all of which provide a free alternative of that distribution (they're only required to provide the source to the free software, not their setup or install programs, etc)
Qt - sold in dual license format. You can buy the right to sell your own proprietary software based on it. You can also buy support packages for the LGPL version.
Although I can't think of any gcc distribution that's sold, Apple uses it as the development framework for their quite proprietary Unix OS. A lot of free software serves this kind of purpose.

- 9,172
- 2
- 36
- 48
-
1Apple have invested quite a bit into LLVM and Clang - change takes time, but I guess they'll be breaking their dependence on GCC at some point. That said, LLVM is an open source project that wasn't originally started by Apple. – Jun 17 '11 at 17:36
-
1Good points. Also a LOT of commercial software has open source embedded. IBM's Websphere suite uses Apache for its HTTP server as just one example. – Jeremy Jun 17 '11 at 17:55
There's no legal obstacles. For any license the Open Source Initiative would call open source, or the Free Software Foundation free, you can sell your software for as much as you can get.
It does limit the business models. Selling shrinkwrap software is pointless when anybody can turn around and resell it for any price, or give it away, without you getting anything. Typically, a company will sell the software with something else.
For example, Red Hat sells Red Hat Enterprise Linux, and does reasonably well, even though some people take every release, remove everything proprietary, and distribute it as CentOS. Having real RHEL means getting certain kinds of support from Red Hat, and this is very valuable in an enterprise environment.
It used to be that Linux distros could be bought in a store for a certain sum of money, back when we couldn't download install DVDs conveniently. People will pay for convenience.
I've heard of cases where a software house sold a customer a GPLed system customized for them. The customer generally has no interest in seeing a release of their private software. (The GPL doesn't mandate that you have to redistribute anything, just that you can't redistribute without providing source or while changing the license.)
A lot of open source software is embedded into products, and forms a vital part. Lots of specialized devices run Linux, for example. I don't know whether you'd consider this selling Linux.

- 20,238
- 2
- 55
- 82
Sure, you can sell an Ubuntu DVD and ship it places. You're not selling the open and free software, so much as the physical DVD itself.
Or there is RedHat's angle, which was to sell phone support to people using their distribution.
I've heard of projects that have charged people for extensions. Say for example, you have a program that deals with png files, they would pay for the program to handle jpeg files as well. But I don't know of any examples off hand.
But there's Maptool's donation wall, which is close. They have a list of features they're going to add, but donators can vote with their wallet which feature is developed first.
And it's entirely legal to sell BSD or any derivative thereof. Which explains OSX.
There's money to be made with the open model, but it has to be made at oblique angles.

- 6,742
- 27
- 43