We are still actively working on the spam issue.

Difference between revisions of "Licenses"

From InstallGentoo Wiki
Jump to: navigation, search
(Licenses: added ISC)
Line 1: Line 1:
 
===Licenses===
 
===Licenses===
 
There are multiple kinds of licenses that software can be released under.
 
There are multiple kinds of licenses that software can be released under.
*[https://www.gnu.org/licenses/gpl.html GNU GPL] is what GNU/Linux is released under. Essentially, you are free to do what you want with software released under this code, provided that if you release it to the public you must also release the source code. Source code does not have to be released if binaries to modifications are not released to the public. This license highly favors the end users.
+
*[https://www.gnu.org/licenses/gpl.html GNU GPL] is what GNU/Linux is released under. Essentially, you are free to do what you want with software released under this code, provided that if you release it to the public you must also release the source code. Source code does not have to be released if binaries to modifications are not released to the public. Think of it as a license that grants you every freedom, except the freedom to take away other people's freedom over the software. This license highly favors the end users.
 
*[https://www.gnu.org/licenses/agpl.html GNU AGPL] is what the FSF suggests for server software.¹ Essentially, it is the GPL with a additional clause that people accessing the software over a network must also get the source. With the popularity of "cloud" services, GPL software can be changed and run at a server without the obligation to release the source code. This license highly favors the end users.
 
*[https://www.gnu.org/licenses/agpl.html GNU AGPL] is what the FSF suggests for server software.¹ Essentially, it is the GPL with a additional clause that people accessing the software over a network must also get the source. With the popularity of "cloud" services, GPL software can be changed and run at a server without the obligation to release the source code. This license highly favors the end users.
*[http://www.linfo.org/bsdlicense.html BSD License] is much more permissive than the GPL. You basically can do anything you want. You can even incorporate BSD-licensed code in your closed-source proprietary software, so long as you give the original author(s) credit as appropriate.
+
*[http://www.linfo.org/bsdlicense.html BSD License] is much more permissive than the GPL. You basically can do anything you want. You can even incorporate BSD-licensed code in your closed-source proprietary software, effectively re-licensing the source code, so long as you give the original author(s) credit as appropriate.
 
*[https://www.apache.org/licenses/LICENSE-2.0.html Apache License] is known for protecting users against patent suing.
 
*[https://www.apache.org/licenses/LICENSE-2.0.html Apache License] is known for protecting users against patent suing.
 
*[http://opensource.org/licenses/MIT MIT License]
 
*[http://opensource.org/licenses/MIT MIT License]

Revision as of 11:26, 13 June 2015

Licenses

There are multiple kinds of licenses that software can be released under.

  • GNU GPL is what GNU/Linux is released under. Essentially, you are free to do what you want with software released under this code, provided that if you release it to the public you must also release the source code. Source code does not have to be released if binaries to modifications are not released to the public. Think of it as a license that grants you every freedom, except the freedom to take away other people's freedom over the software. This license highly favors the end users.
  • GNU AGPL is what the FSF suggests for server software.¹ Essentially, it is the GPL with a additional clause that people accessing the software over a network must also get the source. With the popularity of "cloud" services, GPL software can be changed and run at a server without the obligation to release the source code. This license highly favors the end users.
  • BSD License is much more permissive than the GPL. You basically can do anything you want. You can even incorporate BSD-licensed code in your closed-source proprietary software, effectively re-licensing the source code, so long as you give the original author(s) credit as appropriate.
  • Apache License is known for protecting users against patent suing.
  • MIT License
  • ISC License is like BSD/MIT but clearer given that there is one ISC license and like 6 BSD/MIT licenses, and that no one knows what the fuck an Expat is. The license used by OpenBSD.
  • WTFPL - DO WHATEVER THE FUCK YOU WANT TO PUBLIC LICENSE. The name says it all.
  • CC-BY
  • CC-BY-SA - Without the no commercial and no modifications additions, this is a very liberal license. Anyone can use or modify this work, as long as they let others use it and attribute the author. This license lends itself to art better than it does to software.

¹ How to choose a license for your own work