vote up 10 vote down star
3

What's the best license to use for your software when you want to be paid for commercial use but are happy for non-profits/geeks to use for free?

flag

44% accept rate

8 Answers

vote up 8 vote down check

You can always issue your code under two licenses. Some projects have a GPL version and a non-GPL version for commercial developers who are sensitive. It's not an ideal solution from a freedom perspective, but it is an attractive 'hack'.

The commmercial-'friendly' licenses are the LGPL and the BSD license.

There's a good guide to the new GPL from the free software foundation: http://www.fsf.org/licensing/licenses/quick-guide-gplv3.html

GNU have a great list of licenses to look at, and advice on how they might be used. http://www.gnu.org/philosophy/license-list.html

Note that it's bounded by their philosophy, but nonetheless it's handy.

Another short guide: http://everything2.com/title/Software%2520license%2520guide

link|flag
vote up 0 vote down

You cannot restrict commercial usage of the application with a valid open-source license (OSI-approved).

Dual-licensing works for developer-tools/code libraries that have to be linked/distributed with commercial software. Trolltech and MySql are good examples.

If you want to make money out of open-source software, your open-source product has to be a complement to something that can be sold. For example you could have a core with basic functionality, and for extended features you could sell a commercial license. This worked for PyDev (an Eclipse plugin for Python development). And if the product is complex and enterpriseish, you could sell support.

link|flag
vote up 0 vote down

Just to make this clear: Open Source software by its definition is free for any kind of use, without any fee (esp. clause 1 and 6 of the definition).

So if that was your intent, no Open Source license restricts commercial use of the software.

Dual licensing tries to encourage companies to pay for a non-Open Source license that has some additional/other incentives compared to the chosen Open Source license.

Note that even for commericial purposes your customers are still free to use the software under the Open Source license without paying any fee, so you have to give them some real incentives to get them pay for it.

So in fact, if you want to really force your customers to pay for commericial use, you mustn't use an Open Source license.

link|flag
vote up 1 vote down

If you're licensing a technology, I say GPL. I say this because if the licensee isn't happy giving away their modifications, they have to talk to you and give you $$$.

link|flag
vote up 0 vote down

As epatel suggested, the dual licence is a tidy way to handle this. If one of the GPL, Creative Commons or similar licences handles the open source use, then you're set on that side. And you can probably find a commercial licence close to what you need fairly easily as well.

But, I'd strongly suggest you get a lawyer with software licence experience to help you. In my experience, it's money well spent.

link|flag
vote up 3 vote down

Here you go:

Also, found a good page which helps you pick a license based on the choices you make. (Link)

link|flag
vote up 6 vote down

Look at the dual license ways TrollTech, MySQL have implemented. As long as you own the whole codebase you are free to choose different licenses for different uses.

link|flag
vote up 1 vote down

If I may, I would like to expand on this question: Is there a single source for non-legal breakdowns of the major software licenses?

link|flag

Your Answer

Get an OpenID
or

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